Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed May 17, 2017
1 parent 1907f26 commit 10010aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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.1.2"
version = "0.1.3"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.1.2"
documentation = "https://docs.rs/darling/0.1.3"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
travis-ci = { repository = "TedDriggs/darling" }

[dependencies]
darling_core = { version = "=0.1.2", path = "core" }
darling_macro = { version = "=0.1.2", path = "macro" }
darling_core = { version = "=0.1.3", path = "core" }
darling_macro = { version = "=0.1.3", path = "macro" }

[dev-dependencies]
syn = "0.11"
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.1.2"
version = "0.1.3"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -18,4 +18,4 @@ default = ["syn/full"]
ident_case = "1.0.0"
lazy_static = "0.2.8"
syn = "0.11.11"
quote = "0.3.12"
quote = "0.3.15"
6 changes: 3 additions & 3 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_macro"
version = "0.1.2"
version = "0.1.3"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -13,6 +13,6 @@ license = "MIT"
proc-macro = true

[dependencies]
quote = "0.3.8"
quote = "0.3.15"
syn = "0.11.11"
darling_core = { version = "=0.1.2", path = "../core" }
darling_core = { version = "=0.1.3", path = "../core" }

0 comments on commit 10010aa

Please sign in to comment.