Skip to content

Commit efcfa07

Browse files
committed
Bump version to 0.13.0
1 parent 48f9c75 commit efcfa07

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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.13.0-beta"
3+
version = "0.13.0"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.13.0-beta"
6+
documentation = "https://docs.rs/darling/0.13.0"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -17,8 +17,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
1717
maintenance = { status = "actively-developed" }
1818

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

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

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.13.0-beta"
3+
version = "0.13.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.13.0-beta"
3+
version = "0.13.0"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -13,7 +13,7 @@ edition = "2018"
1313
[dependencies]
1414
quote = "1.0.9"
1515
syn = "1.0.69"
16-
darling_core = { version = "=0.13.0-beta", path = "../core" }
16+
darling_core = { version = "=0.13.0", path = "../core" }
1717

1818
[lib]
1919
proc-macro = true

0 commit comments

Comments
 (0)