Skip to content

Commit 27434b5

Browse files
committed
Bump version to 0.11.0
Fixes #107
1 parent 373c23e commit 27434b5

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.11.0 (December 14, 2020)
4+
- Bump minor version due to unexpected breaking change [#107](https://github.com/TedDriggs/darling/issues/107)
5+
36
## v0.10.3 (December 10, 2020)
47
- Add `discriminant` magic field when deriving `FromVariant` [#105](https://github.com/TedDriggs/darling/pull/105)
58

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "darling"
3-
version = "0.10.3"
3+
version = "0.11.0"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.10.3"
6+
documentation = "https://docs.rs/darling/0.11.0"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -17,8 +17,8 @@ travis-ci = { repository = "TedDriggs/darling" }
1717
maintenance = { status = "actively-developed" }
1818

1919
[dependencies]
20-
darling_core = { version = "=0.10.3", path = "core" }
21-
darling_macro = { version = "=0.10.3", path = "macro" }
20+
darling_core = { version = "=0.11.0", path = "core" }
21+
darling_macro = { version = "=0.11.0", path = "macro" }
2222

2323
[dev-dependencies]
2424
proc-macro2 = "1"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_core"
3-
version = "0.10.3"
3+
version = "0.11.0"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_macro"
3-
version = "0.10.3"
3+
version = "0.11.0"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -12,7 +12,7 @@ license = "MIT"
1212
[dependencies]
1313
quote = "1"
1414
syn = "1"
15-
darling_core = { version = "=0.10.3", path = "../core" }
15+
darling_core = { version = "=0.11.0", path = "../core" }
1616

1717
[lib]
1818
proc-macro = true

0 commit comments

Comments
 (0)