diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c8fd3f..76dc85a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.2.1 (November 28, 2017) - Add `impl FromMetaItem` for integer types [#15](https://github.com/TedDriggs/darling/pull/15) diff --git a/Cargo.toml b/Cargo.toml index 42086ac..270b221 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling" -version = "0.2.0" +version = "0.2.1" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" documentation = "https://docs.rs/darling/0.2.0" @@ -15,8 +15,8 @@ readme = "README.md" travis-ci = { repository = "TedDriggs/darling" } [dependencies] -darling_core = { version = "=0.2.0", path = "core" } -darling_macro = { version = "=0.2.0", path = "macro" } +darling_core = { version = "=0.2.1", path = "core" } +darling_macro = { version = "=0.2.1", path = "macro" } [dev-dependencies] syn = "0.11.11" diff --git a/core/Cargo.toml b/core/Cargo.toml index c07276d..701ce84 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.2.0" +version = "0.2.1" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index df8eceb..706b754 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.2.0" +version = "0.2.1" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "0.3.15" syn = "0.11.11" -darling_core = { version = "=0.2.0", path = "../core" } +darling_core = { version = "=0.2.1", path = "../core" } [lib] proc-macro = true \ No newline at end of file