Skip to content

Commit

Permalink
Update changelog and bump version number for publication.
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Jul 24, 2018
1 parent d171944 commit 3239eb5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,7 @@
# Changelog

## Unreleased
## v0.7.0 (July 24, 2018)
- Update dependencies on `syn` and `proc-macro2`
- Add `util::IdentString`, which acts as an Ident or its string equivalent

## v0.6.3 (May 22, 2018)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "darling"
version = "0.6.3"
version = "0.7.0"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.6.3"
documentation = "https://docs.rs/darling/0.7.0"
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.6.3", path = "core" }
darling_macro = { version = "=0.6.3", path = "macro" }
darling_core = { version = "=0.7.0", path = "core" }
darling_macro = { version = "=0.7.0", path = "macro" }

[dev-dependencies]
proc-macro2 = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.6.3"
version = "0.7.0"
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
@@ -1,6 +1,6 @@
[package]
name = "darling_macro"
version = "0.6.3"
version = "0.7.0"
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.6"
syn = "0.14"
darling_core = { version = "=0.6.3", path = "../core" }
darling_core = { version = "=0.7.0", path = "../core" }

[lib]
proc-macro = true

0 comments on commit 3239eb5

Please sign in to comment.