Skip to content

Commit

Permalink
Bump version to 0.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Apr 6, 2022
1 parent ff15a23 commit b2c5011
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog

## Unreleased
## v0.13.4 (April 6, 2022)

- Impl `FromMeta` for `syn::Visibility`
- Impl `FromMeta` for `syn::Visibility` [#173](https://github.com/TedDriggs/darling/pull/173)

## v0.13.3 (April 5, 2022)

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

[dev-dependencies]
proc-macro2 = "1.0.26"
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.13.3"
version = "0.13.4"
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.13.3"
version = "0.13.4"
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.9"
syn = "1.0.69"
darling_core = { version = "=0.13.3", path = "../core" }
darling_core = { version = "=0.13.4", path = "../core" }

[lib]
proc-macro = true

0 comments on commit b2c5011

Please sign in to comment.