Skip to content

Commit 4186e42

Browse files
committed
Bump version to 0.14.4
1 parent 92abd90 commit 4186e42

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.14.4 (March 9, 2023)
4+
45
- Add support for child diagnostics when `diagnostics` feature enabled [#224](https://github.com/TedDriggs/darling/issues/224)
56

67
## v0.14.3 (February 3, 2023)

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "darling"
3-
version = "0.14.3"
3+
version = "0.14.4"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
6-
documentation = "https://docs.rs/darling/0.14.3"
6+
documentation = "https://docs.rs/darling/0.14.4"
77
description = """
88
A proc-macro library for reading attributes into structs when
99
implementing custom derives.
@@ -17,8 +17,8 @@ exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
1717
maintenance = { status = "actively-developed" }
1818

1919
[dependencies]
20-
darling_core = { version = "=0.14.3", path = "core" }
21-
darling_macro = { version = "=0.14.3", path = "macro" }
20+
darling_core = { version = "=0.14.4", path = "core" }
21+
darling_macro = { version = "=0.14.4", path = "macro" }
2222

2323
[dev-dependencies]
2424
proc-macro2 = "1.0.37"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_core"
3-
version = "0.14.3"
3+
version = "0.14.4"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """

macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darling_macro"
3-
version = "0.14.3"
3+
version = "0.14.4"
44
authors = ["Ted Driggs <[email protected]>"]
55
repository = "https://github.com/TedDriggs/darling"
66
description = """
@@ -13,7 +13,7 @@ edition = "2018"
1313
[dependencies]
1414
quote = "1.0.18"
1515
syn = "1.0.91"
16-
darling_core = { version = "=0.14.3", path = "../core" }
16+
darling_core = { version = "=0.14.4", path = "../core" }
1717

1818
[lib]
1919
proc-macro = true

0 commit comments

Comments
 (0)