diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0de27..f520681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,18 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.1.1] - 2021-11-03 +### Added +- `deserialize_with` attribute which is (basically) forwarded to `serde` + +### Fixed +- Improve some spans in error messages + + ## 0.1.0 - 2021-07-28 ### Added - Everything. [Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.1.0...HEAD +[0.1.1]: https://github.com/LukasKalbertodt/confique/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 6a00d42..e61c0ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.1.0" +version = "0.1.1" authors = ["Lukas Kalbertodt "] edition = "2018" @@ -26,7 +26,7 @@ yaml = ["serde_yaml"] [dependencies] -confique-macro = { version = "=0.0.1", path = "macro" } +confique-macro = { version = "=0.0.2", 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 020c08e..43a3ce7 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.1" +version = "0.0.2" authors = ["Lukas Kalbertodt "] edition = "2018"