Skip to content

Commit

Permalink
Bump version to 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed May 2, 2023
1 parent e4d22dd commit f6167fe
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## v0.20.1 (May 2, 2023)

- Add `Clone` impl for `NestedMeta` [#230](https://github.com/TedDriggs/darling/pull/230)

## v0.20.0 (April 27, 2023)

- Bump syn to version 2, courtesy of @jonasbb [#227](https://github.com/TedDriggs/darling/issues/227)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "darling"
version = "0.20.0"
version = "0.20.1"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.20.0"
documentation = "https://docs.rs/darling/0.20.1"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
Expand All @@ -17,8 +17,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
maintenance = { status = "actively-developed" }

[dependencies]
darling_core = { version = "=0.20.0", path = "core" }
darling_macro = { version = "=0.20.0", path = "macro" }
darling_core = { version = "=0.20.1", path = "core" }
darling_macro = { version = "=0.20.1", path = "macro" }

[dev-dependencies]
proc-macro2 = "1.0.37"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "darling_core"
version = "0.20.0"
version = "0.20.1"
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.20.0"
version = "0.20.1"
authors = ["Ted Driggs <ted.driggs@outlook.com>"]
repository = "https://github.com/TedDriggs/darling"
description = """
Expand All @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
quote = "1.0.18"
syn = "2.0.15"
darling_core = { version = "=0.20.0", path = "../core" }
darling_core = { version = "=0.20.1", path = "../core" }

[lib]
proc-macro = true

0 comments on commit f6167fe

Please sign in to comment.