From 27434b5893808c037fae4002456dedb703af1289 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Mon, 14 Dec 2020 10:56:40 -0800 Subject: [PATCH] Bump version to 0.11.0 Fixes #107 --- CHANGELOG.md | 3 +++ Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73bd41c..9116da4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.11.0 (December 14, 2020) +- Bump minor version due to unexpected breaking change [#107](https://github.com/TedDriggs/darling/issues/107) + ## v0.10.3 (December 10, 2020) - Add `discriminant` magic field when deriving `FromVariant` [#105](https://github.com/TedDriggs/darling/pull/105) diff --git a/Cargo.toml b/Cargo.toml index 48f12da..9264cb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.10.3" +version = "0.11.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.10.3" +documentation = "https://docs.rs/darling/0.11.0" description = """ A proc-macro library for reading attributes into structs when implementing custom derives. @@ -17,8 +17,8 @@ travis-ci = { repository = "TedDriggs/darling" } maintenance = { status = "actively-developed" } [dependencies] -darling_core = { version = "=0.10.3", path = "core" } -darling_macro = { version = "=0.10.3", path = "macro" } +darling_core = { version = "=0.11.0", path = "core" } +darling_macro = { version = "=0.11.0", path = "macro" } [dev-dependencies] proc-macro2 = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 43a9549..431c9e5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.10.3" +version = "0.11.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 3b31c78..fb66bee 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.10.3" +version = "0.11.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "1" syn = "1" -darling_core = { version = "=0.10.3", path = "../core" } +darling_core = { version = "=0.11.0", path = "../core" } [lib] proc-macro = true