Skip to content

Commit

Permalink
Update lazy_static to 1.0 and bump versions (#16)
Browse files Browse the repository at this point in the history
* Update lazy_static to 1.0 and bump versions
  • Loading branch information
Eijebong authored and TedDriggs committed Dec 5, 2017
1 parent bd7e38f commit 376000e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased Changes

## v0.2.2 (December 5, 2017)

- Update `lazy_static` to 1.0 [#15](https://github.com/TedDriggs/darling/pull/16). Thanks to @Ejiebong

## v0.2.1 (November 28, 2017)

- Add `impl FromMetaItem` for integer types [#15](https://github.com/TedDriggs/darling/pull/15)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "darling"
version = "0.2.1"
version = "0.2.2"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.2.0"
documentation = "https://docs.rs/darling/0.2.2"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
Expand All @@ -15,11 +15,11 @@ readme = "README.md"
travis-ci = { repository = "TedDriggs/darling" }

[dependencies]
darling_core = { version = "=0.2.1", path = "core" }
darling_macro = { version = "=0.2.1", path = "macro" }
darling_core = { version = "=0.2.2", path = "core" }
darling_macro = { version = "=0.2.2", path = "macro" }

[dev-dependencies]
syn = "0.11.11"

[workspace]
members = ["macro", "core"]
members = ["macro", "core"]
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.2.1"
version = "0.2.2"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -16,6 +16,6 @@ default = ["syn/full"]

[dependencies]
ident_case = "1.0.0"
lazy_static = "0.2.8"
lazy_static = "1.0.0"
syn = "0.11.11"
quote = "0.3.15"
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.2.1"
version = "0.2.2"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -12,7 +12,7 @@ license = "MIT"
[dependencies]
quote = "0.3.15"
syn = "0.11.11"
darling_core = { version = "=0.2.1", path = "../core" }
darling_core = { version = "=0.2.2", path = "../core" }

[lib]
proc-macro = true
proc-macro = true

0 comments on commit 376000e

Please sign in to comment.