Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
Fixes #107
  • Loading branch information
TedDriggs committed Dec 14, 2020
1 parent 373c23e commit 27434b5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v0.11.0 (December 14, 2020)
- Bump minor version due to unexpected breaking change [#107](https://github.com/TedDriggs/darling/issues/107)

## v0.10.3 (December 10, 2020)
- Add `discriminant` magic field when deriving `FromVariant` [#105](https://github.com/TedDriggs/darling/pull/105)

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.10.3"
version = "0.11.0"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.10.3"
documentation = "https://docs.rs/darling/0.11.0"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
Expand All @@ -17,8 +17,8 @@ travis-ci = { repository = "TedDriggs/darling" }
maintenance = { status = "actively-developed" }

[dependencies]
darling_core = { version = "=0.10.3", path = "core" }
darling_macro = { version = "=0.10.3", path = "macro" }
darling_core = { version = "=0.11.0", path = "core" }
darling_macro = { version = "=0.11.0", path = "macro" }

[dev-dependencies]
proc-macro2 = "1"
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.10.3"
version = "0.11.0"
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.10.3"
version = "0.11.0"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -12,7 +12,7 @@ license = "MIT"
[dependencies]
quote = "1"
syn = "1"
darling_core = { version = "=0.10.3", path = "../core" }
darling_core = { version = "=0.11.0", path = "../core" }

[lib]
proc-macro = true

0 comments on commit 27434b5

Please sign in to comment.