Skip to content

Commit

Permalink
Bump version to 0.20.10
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Jul 9, 2024
1 parent d32836d commit 84448b8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.20.10 (July 9, 2024)

- 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)
- Properly initialize `attrs` magic field in derived `FromAttributes` impls [#297](https://github.com/TedDriggs/darling/pull/297)

## v0.20.9 (May 15, 2024)

- 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)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "darling"
version = "0.20.9"
version = "0.20.10"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.20.9"
documentation = "https://docs.rs/darling/0.20.10"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
Expand All @@ -18,8 +18,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
maintenance = { status = "actively-developed" }

[dependencies]
darling_core = { version = "=0.20.9", path = "core" }
darling_macro = { version = "=0.20.9", path = "macro" }
darling_core = { version = "=0.20.10", path = "core" }
darling_macro = { version = "=0.20.10", path = "macro" }

[dev-dependencies]
proc-macro2 = "1.0.37"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.20.9"
version = "0.20.10"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_macro"
version = "0.20.9"
version = "0.20.10"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -14,7 +14,7 @@ rust-version = "1.56"
[dependencies]
quote = "1.0.18"
syn = "2.0.15"
darling_core = { version = "=0.20.9", path = "../core" }
darling_core = { version = "=0.20.10", path = "../core" }

[lib]
proc-macro = true

0 comments on commit 84448b8

Please sign in to comment.