From 15c729d5f7d32b5df345452f91c999ec1c1afadf Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Sun, 10 Dec 2023 12:20:59 +0100 Subject: [PATCH] Bump version to 0.2.5 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09cddea..9eceb08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] + +## [0.2.5] - 2023-12-10 - Add `#[config(partial_attr(...))]` struct attribute to specify attributes for the partial type. - 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. - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...HEAD +[0.2.5]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/LukasKalbertodt/confique/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...v0.2.2 diff --git a/Cargo.toml b/Cargo.toml index 63fafcf..812f4ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.2.4" +version = "0.2.5" authors = ["Lukas Kalbertodt "] edition = "2021" @@ -26,7 +26,7 @@ yaml = ["serde_yaml"] [dependencies] -confique-macro = { version = "=0.0.8", path = "macro" } +confique-macro = { version = "=0.0.9", path = "macro" } json5 = { version = "0.4.1", optional = true } serde = { version = "1", features = ["derive"] } serde_yaml = { version = "0.9", optional = true } diff --git a/macro/Cargo.toml b/macro/Cargo.toml index a1854b0..b87408d 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.8" +version = "0.0.9" authors = ["Lukas Kalbertodt "] edition = "2021"