From 27b262013f2f920852a7081ad1ddccc8277c31d9 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Thu, 10 Oct 2024 12:28:48 +0200 Subject: [PATCH] Bump version to 0.2.6 --- CHANGELOG.md | 8 +++++++- Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eceb08..1f986bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.2.6] - 2024-10-10 +- Fix compile errors when using `confique` derive without having `serde` in your direct dependencies (see [#38](https://github.com/LukasKalbertodt/confique/issues/38)). +- Update `toml` dependency to 0.8 +- Fix some typos in docs + ## [0.2.5] - 2023-12-10 - Add `#[config(partial_attr(...))]` struct attribute to specify attributes for the partial type. @@ -103,7 +108,8 @@ All notable changes to this project will be documented in this file. - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.6...HEAD +[0.2.6]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...v0.2.6 [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 diff --git a/Cargo.toml b/Cargo.toml index d784b7c..ccdfe64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.2.5" +version = "0.2.6" authors = ["Lukas Kalbertodt "] edition = "2021" @@ -31,7 +31,7 @@ yaml = ["serde_yaml"] [dependencies] -confique-macro = { version = "=0.0.9", path = "macro" } +confique-macro = { version = "=0.0.10", 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 b87408d..5d3b3f7 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.9" +version = "0.0.10" authors = ["Lukas Kalbertodt "] edition = "2021"