diff --git a/CHANGELOG.md b/CHANGELOG.md index ef888c0..3b14758 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.1.4] - 2022-10-14 +### Fixed +- Derive attribute `env` can now be used together with `deserialize_with` (#2) + ## [0.1.3] - 2022-04-07 ### Fixed - Derive macro does not product unparsable output anymore if the visibility @@ -34,7 +39,8 @@ All notable changes to this project will be documented in this file. - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...HEAD +[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 [0.1.2]: https://github.com/LukasKalbertodt/confique/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/LukasKalbertodt/confique/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index ad7f40b..0667b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.1.3" +version = "0.1.4" authors = ["Lukas Kalbertodt "] edition = "2018" @@ -26,7 +26,7 @@ yaml = ["serde_yaml"] [dependencies] -confique-macro = { version = "=0.0.3", path = "macro" } +confique-macro = { version = "=0.0.4", path = "macro" } serde = { version = "1", features = ["derive"] } serde_yaml = { version = "0.8", optional = true } toml = { version = "0.5", optional = true } diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 4c03ed2..8f5e4ba 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.3" +version = "0.0.4" authors = ["Lukas Kalbertodt "] edition = "2018"