From 25ce6ecc079c58a18cbecbdcc98bf8d647410edd Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Fri, 23 Feb 2024 10:46:15 -0800 Subject: [PATCH] Bump version to 0.20.8 --- 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 35ea418..931a8c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.20.8 (February 23, 2024) - Add `#[darling(with = ...)]` support to `attrs` magic field to allow using custom receiver types for `attrs` [#273](https://github.com/TedDriggs/darling/issues/273) diff --git a/Cargo.toml b/Cargo.toml index 7662712..c2fe839 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.20.7" +version = "0.20.8" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.20.7" +documentation = "https://docs.rs/darling/0.20.8" 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.7", path = "core" } -darling_macro = { version = "=0.20.7", path = "macro" } +darling_core = { version = "=0.20.8", path = "core" } +darling_macro = { version = "=0.20.8", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index 011dfc8..09aaec7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.20.7" +version = "0.20.8" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 0451e7c..dd79bc3 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.20.7" +version = "0.20.8" 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.7", path = "../core" } +darling_core = { version = "=0.20.8", path = "../core" } [lib] proc-macro = true