Skip to content

Commit 0b04aac

Browse files
committed
v0.3.0
1 parent 7f1281f commit 0b04aac

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased Changes
44

5+
## v0.3.0 (January 26, 2018)
6+
57
### Breaking Changes
68
- Update `syn` to 0.12 [#20](https://github.com/TedDriggs/darling/pull/20). Thanks to @Eijebong
79
- Update `quote` to 0.4 [#20](https://github.com/TedDriggs/darling/pull/20). Thanks to @Eijebong

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.2.2"
3+
version = "0.3.0"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.2.2"
6+
documentation = "https://docs.rs/darling/0.3.0"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -15,8 +15,8 @@ readme = "README.md"
1515
travis-ci = { repository = "TedDriggs/darling" }
1616

1717
[dependencies]
18-
darling_core = { version = "=0.2.2", path = "core" }
19-
darling_macro = { version = "=0.2.2", path = "macro" }
18+
darling_core = { version = "=0.3.0", path = "core" }
19+
darling_macro = { version = "=0.3.0", path = "macro" }
2020

2121
[dev-dependencies]
2222
syn = "0.12.10"

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.2.2"
3+
version = "0.3.0"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
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.2.2"
3+
version = "0.3.0"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -12,7 +12,7 @@ license = "MIT"
1212
[dependencies]
1313
quote = "0.4"
1414
syn = "0.12"
15-
darling_core = { version = "=0.2.2", path = "../core" }
15+
darling_core = { version = "=0.3.0", path = "../core" }
1616

1717
[lib]
1818
proc-macro = true

0 commit comments

Comments
 (0)