Skip to content

Commit 90ceafc

Browse files
committed
Bump version to 0.20.6
1 parent a43190f commit 90ceafc

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

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

3+
## v0.20.6 (February 14, 2024)
4+
5+
- Fix some missing syn invisible group handling in `FromMeta` impls [#263](https://github.com/TedDriggs/darling/pull/263)
6+
- Fix misleading error message on `Error::unexpected_type` so it no longer implies the type was a literal [#264](https://github.com/TedDriggs/darling/pull/264)
7+
- Impl `FromMeta` `Vec` of literals, e.g. `LitStr` [#265](https://github.com/TedDriggs/pull/265)
8+
39
## v0.20.5 (January 30, 2024)
410

511
- Add `Flag::span` inherent method, as `Flag` can no longer impl `syn::spanned::Spanned` [#242](https://github.com/TedDriggs/darling/issues/242)

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.5"
3+
version = "0.20.6"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.20.5"
6+
documentation = "https://docs.rs/darling/0.20.6"
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.5", path = "core" }
21-
darling_macro = { version = "=0.20.5", path = "macro" }
20+
darling_core = { version = "=0.20.6", path = "core" }
21+
darling_macro = { version = "=0.20.6", 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.5"
3+
version = "0.20.6"
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.5"
3+
version = "0.20.6"
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.5", path = "../core" }
16+
darling_core = { version = "=0.20.6", path = "../core" }
1717

1818
[lib]
1919
proc-macro = true

0 commit comments

Comments
 (0)