Bump version to 0.1.4

This commit is contained in:
Lukas Kalbertodt
2022-10-14 16:30:06 +02:00
parent eb03488973
commit 90344ebd36
3 changed files with 10 additions and 4 deletions

View File

@@ -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

View File

@@ -1,6 +1,6 @@
[package]
name = "confique"
version = "0.1.3"
version = "0.1.4"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
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 }

View File

@@ -1,6 +1,6 @@
[package]
name = "confique-macro"
version = "0.0.3"
version = "0.0.4"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"