diff --git a/CHANGELOG.md b/CHANGELOG.md index 080bb7e..0c1ceb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.20.4 (January 29, 2024) - Accept bare paths in `#[darling(default = ...)]` [#258](https://github.com/TedDriggs/darling/pull/258) - Add `FromMeta` impl for `PathBuf` [#259](https://github.com/TedDriggs/darling/pull/259) diff --git a/Cargo.toml b/Cargo.toml index 7deafc0..66e4a28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.20.3" +version = "0.20.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.20.3" +documentation = "https://docs.rs/darling/0.20.4" description = """ A proc-macro library for reading attributes into structs when implementing custom derives. @@ -17,8 +17,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"] maintenance = { status = "actively-developed" } [dependencies] -darling_core = { version = "=0.20.3", path = "core" } -darling_macro = { version = "=0.20.3", path = "macro" } +darling_core = { version = "=0.20.4", path = "core" } +darling_macro = { version = "=0.20.4", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 14c2faf..bbfd65b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.20.3" +version = "0.20.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index c5ef128..69daade 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.20.3" +version = "0.20.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -13,7 +13,7 @@ edition = "2018" [dependencies] quote = "1.0.18" syn = "2.0.15" -darling_core = { version = "=0.20.3", path = "../core" } +darling_core = { version = "=0.20.4", path = "../core" } [lib] proc-macro = true