From f6167fe292e1934bf2116271b0e72127da720162 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Tue, 2 May 2023 14:40:37 -0700 Subject: [PATCH] Bump version to 0.20.1 --- CHANGELOG.md | 4 ++++ Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2358c5..d11b438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.20.1 (May 2, 2023) + +- Add `Clone` impl for `NestedMeta` [#230](https://github.com/TedDriggs/darling/pull/230) + ## v0.20.0 (April 27, 2023) - Bump syn to version 2, courtesy of @jonasbb [#227](https://github.com/TedDriggs/darling/issues/227) diff --git a/Cargo.toml b/Cargo.toml index 56751cd..a8feae0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.20.0" +version = "0.20.1" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.20.0" +documentation = "https://docs.rs/darling/0.20.1" 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.0", path = "core" } -darling_macro = { version = "=0.20.0", path = "macro" } +darling_core = { version = "=0.20.1", path = "core" } +darling_macro = { version = "=0.20.1", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 655e555..23f5114 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.20.0" +version = "0.20.1" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 59fc63f..f88bd46 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.20.0" +version = "0.20.1" 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.0", path = "../core" } +darling_core = { version = "=0.20.1", path = "../core" } [lib] proc-macro = true