Bump version to 0.2.1

This commit is contained in:
Lukas Kalbertodt
2022-11-06 12:33:18 +01:00
parent c1ec9477b2
commit ad4885032e
3 changed files with 11 additions and 4 deletions

View File

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

View File

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

View File

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