Skip to content

Commit f967ff5

Browse files
committed
Bump version to 0.21.1
1 parent 9cc4429 commit f967ff5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.21.1 (August 4, 2025)
44

55
- Track all alternate field names, and show them in error message if there aren't too many. [#325](https://github.com/TedDriggs/darling/issues/325)
66
- Track all alternate values for enum variants, and show them in error messages if there aren't too many. [#362](https://github.com/TedDriggs/darling/issues/362)

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "darling"
3-
version = "0.21.0"
3+
version = "0.21.1"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.21.0"
6+
documentation = "https://docs.rs/darling/0.21.1"
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.21.0", path = "core" }
22-
darling_macro = { version = "=0.21.0", path = "macro" }
21+
darling_core = { version = "=0.21.1", path = "core" }
22+
darling_macro = { version = "=0.21.1", path = "macro" }
2323

2424
[dev-dependencies]
2525
proc-macro2 = "1.0.86"

core/Cargo.toml

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

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_macro"
3-
version = "0.21.0"
3+
version = "0.21.1"
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.21.0", path = "../core" }
17+
darling_core = { version = "=0.21.1", path = "../core" }
1818

1919
[lib]
2020
proc-macro = true

0 commit comments

Comments
 (0)