diff --git a/CHANGELOG.md b/CHANGELOG.md index 8408407..0cef69e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog -## Unreleased +## v0.14.4 (March 9, 2023) + - Add support for child diagnostics when `diagnostics` feature enabled [#224](https://github.com/TedDriggs/darling/issues/224) ## v0.14.3 (February 3, 2023) diff --git a/Cargo.toml b/Cargo.toml index a209d00..6f9aa30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.14.3" +version = "0.14.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.14.3" +documentation = "https://docs.rs/darling/0.14.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.14.3", path = "core" } -darling_macro = { version = "=0.14.3", path = "macro" } +darling_core = { version = "=0.14.4", path = "core" } +darling_macro = { version = "=0.14.4", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 50f8b9e..677f981 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.14.3" +version = "0.14.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 94673a6..3f50ffa 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.14.3" +version = "0.14.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -13,7 +13,7 @@ edition = "2018" [dependencies] quote = "1.0.18" syn = "1.0.91" -darling_core = { version = "=0.14.3", path = "../core" } +darling_core = { version = "=0.14.4", path = "../core" } [lib] proc-macro = true