Skip to content

Commit

Permalink
Bump version to 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Feb 4, 2019
1 parent e29dd30 commit 266b421
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "darling"
version = "0.8.3"
version = "0.8.4"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
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.
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.8.3"
version = "0.8.4"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_macro"
version = "0.8.3"
version = "0.8.4"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -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

0 comments on commit 266b421

Please sign in to comment.