Skip to content

Commit

Permalink
Bump version to v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Apr 2, 2018
1 parent 76b629a commit 2b4d169
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## Unreleased Features
_None_

## v0.3.3 (April 2, 2018)
- Update dependencies on `proc-macro`, `quote`, and `syn` [#26](https://github.com/TedDriggs/darling/pull/26). Thanks to @hcpl

## v0.3.2 (March 13, 2018)
- Derive `Default` on `darling::Ignored` (fixes [#25](https://github.com/TedDriggs/darling/issues/25)).

Expand Down
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.3.2"
version = "0.3.3"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.3.2"
documentation = "https://docs.rs/darling/0.3.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.3.2", path = "core" }
darling_macro = { version = "=0.3.2", path = "macro" }
darling_core = { version = "=0.3.3", path = "core" }
darling_macro = { version = "=0.3.3", path = "macro" }

[dev-dependencies]
quote = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.3.2"
version = "0.3.3"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darling_macro"
version = "0.3.2"
version = "0.3.3"
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.5"
syn = "0.13"
darling_core = { version = "=0.3.2", path = "../core" }
darling_core = { version = "=0.3.3", path = "../core" }

[lib]
proc-macro = true

0 comments on commit 2b4d169

Please sign in to comment.