From ed11492a214c3108ea841333c47d3098c3d4b272 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Mon, 21 Jan 2019 14:22:10 -0800 Subject: [PATCH] Bump version to 0.8.3 --- CHANGELOG.md | 5 +++++ Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7091bfa..cf8a7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.8.3 (January 21, 2019) +- Attach spans to errors in generated trait impls [#37](https://github.com/darling/issues/37) +- Attach spans to errors for types with provided bespoke implementations +- Deprecate `set_span` from 0.8.2, as spans should never be broadened after being initially set + ## v0.8.2 (January 17, 2019) - Add spans to errors to make quality warnings and errors easy in darling. This is blocked on diagnostics stabilizing. - Add `darling::util::SpannedValue` so proc-macro authors can remember position information alongside parsed values. diff --git a/Cargo.toml b/Cargo.toml index 4c4c4aa..fefefe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.8.2" +version = "0.8.3" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.8.2" +documentation = "https://docs.rs/darling/0.8.3" 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.2", path = "core" } -darling_macro = { version = "=0.8.2", path = "macro" } +darling_core = { version = "=0.8.3", path = "core" } +darling_macro = { version = "=0.8.3", path = "macro" } [dev-dependencies] proc-macro2 = "0.4" diff --git a/core/Cargo.toml b/core/Cargo.toml index fe8e0b0..8f2fdb0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.8.2" +version = "0.8.3" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index f599418..c179469 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.8.2" +version = "0.8.3" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "0.6" syn = "0.15" -darling_core = { version = "=0.8.2", path = "../core" } +darling_core = { version = "=0.8.3", path = "../core" } [lib] proc-macro = true