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