From 99ae0bb97fd88f4b22dd46b95773a1e752bfcf34 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Wed, 12 Jul 2023 11:52:05 -0700 Subject: [PATCH] Bump version to 0.20.3 --- 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 8978123..359f98b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.20.3 (July 12, 2023) + +- Add `FromMeta` impl for `u128` and `i128` [#243](https://github.com/TedDriggs/darling/pull/243) + ## v0.20.2 (May 25, 2023) - Allow darling users to omit quotation marks for paths and idents [#236](https://github.com/TedDriggs/darling/pull/236) diff --git a/Cargo.toml b/Cargo.toml index ffba6b0..7deafc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.20.2" +version = "0.20.3" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.20.2" +documentation = "https://docs.rs/darling/0.20.3" 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.2", path = "core" } -darling_macro = { version = "=0.20.2", path = "macro" } +darling_core = { version = "=0.20.3", path = "core" } +darling_macro = { version = "=0.20.3", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 62e4dc8..14c2faf 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.20.2" +version = "0.20.3" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 95321fa..c5ef128 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.20.2" +version = "0.20.3" 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.2", path = "../core" } +darling_core = { version = "=0.20.3", path = "../core" } [lib] proc-macro = true