From 615874958937f1bb3ffd2c1def5f3de9369c27e1 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Thu, 22 Feb 2024 14:02:42 -0800 Subject: [PATCH] Bump version to 0.20.7 --- CHANGELOG.md | 2 +- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f202a07..b3ba98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.20.7 (February 22, 2024) - Add `#[darling(flatten)]` to allow forwarding unknown fields to another struct [#146](https://github.com/TedDriggs/darling/issues/146) - Don't suggest names of skipped fields in derived impls [#268](https://github.com/TedDriggs/darling/issues/268) diff --git a/Cargo.toml b/Cargo.toml index c056fbf..7662712 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.20.6" +version = "0.20.7" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.20.6" +documentation = "https://docs.rs/darling/0.20.7" 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.6", path = "core" } -darling_macro = { version = "=0.20.6", path = "macro" } +darling_core = { version = "=0.20.7", path = "core" } +darling_macro = { version = "=0.20.7", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index a030ed0..011dfc8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.20.6" +version = "0.20.7" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index f0fc6b9..0451e7c 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.20.6" +version = "0.20.7" 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.6", path = "../core" } +darling_core = { version = "=0.20.7", path = "../core" } [lib] proc-macro = true