From b0bfdfd4e81d06f424fa6ee0ebbfb78260554a4e Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Thu, 27 Apr 2023 08:51:01 -0700 Subject: [PATCH] Bump version to 0.20.0 --- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2049149..56751cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.14.4" +version = "0.20.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.14.4" +documentation = "https://docs.rs/darling/0.20.0" 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.4", path = "core" } -darling_macro = { version = "=0.14.4", path = "macro" } +darling_core = { version = "=0.20.0", path = "core" } +darling_macro = { version = "=0.20.0", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index b3c2150..655e555 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.14.4" +version = "0.20.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index f2ab2c8..59fc63f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.14.4" +version = "0.20.0" 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.14.4", path = "../core" } +darling_core = { version = "=0.20.0", path = "../core" } [lib] proc-macro = true