Skip to content

Commit

Permalink
Bump version to 0.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed May 25, 2023
1 parent 6d6f6e0 commit 371dd9b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

## Unreleased
## v0.20.2 (May 25, 2023)

- Allow darling users to omit quotation marks for paths and idents
- Allow darling users to omit quotation marks for paths and idents [#236](https://github.com/TedDriggs/darling/pull/236)
- Add new util functions for controlling how quotation marks are handled when reading into `Expr` fields [#235](https://github.com/TedDriggs/darling/pull/235)

## v0.20.1 (May 2, 2023)

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.20.1"
version = "0.20.2"
authors = ["Ted Driggs <[email protected]>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.20.1"
documentation = "https://docs.rs/darling/0.20.2"
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.1", path = "core" }
darling_macro = { version = "=0.20.1", path = "macro" }
darling_core = { version = "=0.20.2", path = "core" }
darling_macro = { version = "=0.20.2", path = "macro" }

[dev-dependencies]
proc-macro2 = "1.0.37"
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.20.1"
version = "0.20.2"
authors = ["Ted Driggs <[email protected]>"]
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.20.1"
version = "0.20.2"
authors = ["Ted Driggs <[email protected]>"]
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.1", path = "../core" }
darling_core = { version = "=0.20.2", path = "../core" }

[lib]
proc-macro = true

0 comments on commit 371dd9b

Please sign in to comment.