diff --git a/CHANGELOG.md b/CHANGELOG.md index f739bd6..e38e09d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Unreleased Features + +## v0.5.0 (May 10, 2018) - Add `ast::Generics` and `ast::GenericParam` to work with generics in a manner similar to `ast::Data` - Add `ast::GenericParamExt` to support alternate representations of generic parameters - Add `util::WithOriginal` to get a parsed representation and syn's own struct for a syntax block diff --git a/Cargo.toml b/Cargo.toml index 822422e..e131d87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.4.0" +version = "0.5.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.4.0" +documentation = "https://docs.rs/darling/0.5.0" description = """ A proc-macro library for reading attributes into structs when implementing custom derives. @@ -15,8 +15,8 @@ readme = "README.md" travis-ci = { repository = "TedDriggs/darling" } [dependencies] -darling_core = { version = "=0.4.0", path = "core" } -darling_macro = { version = "=0.4.0", path = "macro" } +darling_core = { version = "=0.5.0", path = "core" } +darling_macro = { version = "=0.5.0", path = "macro" } [dev-dependencies] quote = "0.5" diff --git a/core/Cargo.toml b/core/Cargo.toml index bca01ee..a5a494c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.4.0" +version = "0.5.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 6c98498..3646406 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.4.0" +version = "0.5.0" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "0.5" syn = "0.13" -darling_core = { version = "=0.4.0", path = "../core" } +darling_core = { version = "=0.5.0", path = "../core" } [lib] proc-macro = true