diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9a2ae..b76c357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v0.8.4 +## v0.8.4 (February 4, 2019) - Use `syn::Error` to provide precise errors before `proc_macro::Diagnostic` is available - Add `diagnostics` feature flag to toggle between stable and unstable error backends - Attach error information in more contexts diff --git a/Cargo.toml b/Cargo.toml index 407f839..f741fbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.8.3" +version = "0.8.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.8.3" +documentation = "https://docs.rs/darling/0.8.4" 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.8.3", path = "core" } -darling_macro = { version = "=0.8.3", path = "macro" } +darling_core = { version = "=0.8.4", path = "core" } +darling_macro = { version = "=0.8.4", path = "macro" } [dev-dependencies] proc-macro2 = "0.4" diff --git a/core/Cargo.toml b/core/Cargo.toml index 557d06a..57ac92c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.8.3" +version = "0.8.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 5b57360..bb250df 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.8.3" +version = "0.8.4" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "0.6" syn = "0.15.26" -darling_core = { version = "=0.8.3", path = "../core" } +darling_core = { version = "=0.8.4", path = "../core" } [lib] proc-macro = true