From ad4885032e35e3e3f7dd60b83d9c7a3f29f5d930 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Sun, 6 Nov 2022 12:33:18 +0100 Subject: [PATCH] Bump version to 0.2.1 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b37b01..f370b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file. ## [Unreleased] + +## [0.2.1] - 2022-11-06 ### Added - `parse_env` attribute for custom parsing of environment variables (allows you to load lists and other complex objects from env vars). + (in [#22](https://github.com/LukasKalbertodt/confique/pull/22), thanks @cyphersnake) + +### Changed +- Updated `serde_yaml` to 0.9 (this is only an internal dependency). ## [0.2.0] - 2022-10-21 ### Added @@ -65,7 +71,8 @@ All notable changes to this project will be documented in this file. - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...v0.2.0 [0.1.4]: https://github.com/LukasKalbertodt/confique/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/LukasKalbertodt/confique/compare/v0.1.2...v0.1.3 diff --git a/Cargo.toml b/Cargo.toml index 4d01df8..9d70a47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.2.0" +version = "0.2.1" authors = ["Lukas Kalbertodt "] edition = "2021" @@ -26,7 +26,7 @@ yaml = ["serde_yaml"] [dependencies] -confique-macro = { version = "=0.0.5", path = "macro" } +confique-macro = { version = "=0.0.6", 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 a5f9f8b..90e0dfb 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.5" +version = "0.0.6" authors = ["Lukas Kalbertodt "] edition = "2021"