Skip to content

Commit 10010aa

Browse files
committed
Version bump
1 parent 1907f26 commit 10010aa

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

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.1.2"
3+
version = "0.1.3"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.1.2"
6+
documentation = "https://docs.rs/darling/0.1.3"
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.1.2", path = "core" }
19-
darling_macro = { version = "=0.1.2", path = "macro" }
18+
darling_core = { version = "=0.1.3", path = "core" }
19+
darling_macro = { version = "=0.1.3", path = "macro" }
2020

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

core/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_core"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -18,4 +18,4 @@ default = ["syn/full"]
1818
ident_case = "1.0.0"
1919
lazy_static = "0.2.8"
2020
syn = "0.11.11"
21-
quote = "0.3.12"
21+
quote = "0.3.15"

macro/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_macro"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -13,6 +13,6 @@ license = "MIT"
1313
proc-macro = true
1414

1515
[dependencies]
16-
quote = "0.3.8"
16+
quote = "0.3.15"
1717
syn = "0.11.11"
18-
darling_core = { version = "=0.1.2", path = "../core" }
18+
darling_core = { version = "=0.1.3", path = "../core" }

0 commit comments

Comments
 (0)