From 3f3664788adb1db15f18c71968000b20fe019efe Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Wed, 13 Apr 2022 09:19:30 -0700 Subject: [PATCH] Bump version to 0.14.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a599682..c524eeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.14.0 (April 13, 2022) - **BREAKING CHANGE:** Remove many trait impls from `util::Flag`. This type had a number of deref and operator impls that made it usable as sort-of-a-boolean. @@ -8,6 +8,9 @@ and that most of those impls were unnecessary. [#179](https://github.com/TedDriggs/darling/pull/179) - Remove need for `#[darling(default)]` on `Option` and `Flag` fields [#161](https://github.com/TedDriggs/darling/issues/161) - Improve validation of enum shapes [#178](https://github.com/TedDriggs/darling/pull/178) +- Bump `proc-macro2` dependency to 1.0.37 [#180](https://github.com/TedDriggs/darling/pull/180) +- Bump `quote` dependency to 1.0.18 [#180](https://github.com/TedDriggs/darling/pull/180) +- Bump `syn` dependency to 1.0.91 [#180](https://github.com/TedDriggs/darling/pull/180) ## v0.13.4 (April 6, 2022) diff --git a/Cargo.toml b/Cargo.toml index bacb9e2..0331958 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.13.4" +version = "0.14.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.13.4" +documentation = "https://docs.rs/darling/0.14.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.13.4", path = "core" } -darling_macro = { version = "=0.13.4", path = "macro" } +darling_core = { version = "=0.14.0", path = "core" } +darling_macro = { version = "=0.14.0", path = "macro" } [dev-dependencies] proc-macro2 = "1.0.37" diff --git a/core/Cargo.toml b/core/Cargo.toml index f4c82b4..f4ec50e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.13.4" +version = "0.14.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index d5856e7..3c46d9d 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.13.4" +version = "0.14.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -13,7 +13,7 @@ edition = "2018" [dependencies] quote = "1.0.18" syn = "1.0.91" -darling_core = { version = "=0.13.4", path = "../core" } +darling_core = { version = "=0.14.0", path = "../core" } [lib] proc-macro = true