Skip to content

Commit f6167fe

Browse files
committed
Bump version to 0.20.1
1 parent e4d22dd commit f6167fe

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.20.1 (May 2, 2023)
4+
5+
- Add `Clone` impl for `NestedMeta` [#230](https://github.com/TedDriggs/darling/pull/230)
6+
37
## v0.20.0 (April 27, 2023)
48

59
- Bump syn to version 2, courtesy of @jonasbb [#227](https://github.com/TedDriggs/darling/issues/227)

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "darling"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.20.0"
6+
documentation = "https://docs.rs/darling/0.20.1"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -17,8 +17,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
1717
maintenance = { status = "actively-developed" }
1818

1919
[dependencies]
20-
darling_core = { version = "=0.20.0", path = "core" }
21-
darling_macro = { version = "=0.20.0", path = "macro" }
20+
darling_core = { version = "=0.20.1", path = "core" }
21+
darling_macro = { version = "=0.20.1", path = "macro" }
2222

2323
[dev-dependencies]
2424
proc-macro2 = "1.0.37"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_core"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """

macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_macro"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -13,7 +13,7 @@ edition = "2018"
1313
[dependencies]
1414
quote = "1.0.18"
1515
syn = "2.0.15"
16-
darling_core = { version = "=0.20.0", path = "../core" }
16+
darling_core = { version = "=0.20.1", path = "../core" }
1717

1818
[lib]
1919
proc-macro = true

0 commit comments

Comments
 (0)