Skip to content

Commit 15c729d

Browse files
Bump version to 0.2.5
1 parent 042c78f commit 15c729d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55

66
## [Unreleased]
7+
8+
## [0.2.5] - 2023-12-10
79
- Add `#[config(partial_attr(...))]` struct attribute to specify attributes for
810
the partial type.
911
- Allow "yes" and "no" as values when deserializing `bool` from env. Also, the
@@ -101,7 +103,8 @@ All notable changes to this project will be documented in this file.
101103
- Everything.
102104

103105

104-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...HEAD
106+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...HEAD
107+
[0.2.5]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...v0.2.5
105108
[0.2.4]: https://github.com/LukasKalbertodt/confique/compare/v0.2.3...v0.2.4
106109
[0.2.3]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...v0.2.3
107110
[0.2.2]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...v0.2.2

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2021"
66

@@ -26,7 +26,7 @@ yaml = ["serde_yaml"]
2626

2727

2828
[dependencies]
29-
confique-macro = { version = "=0.0.8", path = "macro" }
29+
confique-macro = { version = "=0.0.9", path = "macro" }
3030
json5 = { version = "0.4.1", optional = true }
3131
serde = { version = "1", features = ["derive"] }
3232
serde_yaml = { version = "0.9", optional = true }

macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique-macro"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2021"
66

0 commit comments

Comments
 (0)