Skip to content

Commit 84448b8

Browse files
committed
Bump version to 0.20.10
1 parent d32836d commit 84448b8

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

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

3+
## v0.20.10 (July 9, 2024)
4+
5+
- Add `#[allow(clippy::manual_unwrap_or_default)]` to all generated impls to avoid causing clippy fails in crates using `darling` [#296](https://github.com/TedDriggs/darling/pull/296)
6+
- Properly initialize `attrs` magic field in derived `FromAttributes` impls [#297](https://github.com/TedDriggs/darling/pull/297)
7+
38
## v0.20.9 (May 15, 2024)
49

510
- Allow word-form for newtype enum variants whose only field produces a value when `from_none` is called on their type [#249](https://github.com/TedDriggs/darling/issues/249)

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.9"
3+
version = "0.20.10"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.20.9"
6+
documentation = "https://docs.rs/darling/0.20.10"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -18,8 +18,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
1818
maintenance = { status = "actively-developed" }
1919

2020
[dependencies]
21-
darling_core = { version = "=0.20.9", path = "core" }
22-
darling_macro = { version = "=0.20.9", path = "macro" }
21+
darling_core = { version = "=0.20.10", path = "core" }
22+
darling_macro = { version = "=0.20.10", path = "macro" }
2323

2424
[dev-dependencies]
2525
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.9"
3+
version = "0.20.10"
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.9"
3+
version = "0.20.10"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -14,7 +14,7 @@ rust-version = "1.56"
1414
[dependencies]
1515
quote = "1.0.18"
1616
syn = "2.0.15"
17-
darling_core = { version = "=0.20.9", path = "../core" }
17+
darling_core = { version = "=0.20.10", path = "../core" }
1818

1919
[lib]
2020
proc-macro = true

0 commit comments

Comments
 (0)