mirror of
https://github.com/OMGeeky/confique.git
synced 2026-01-20 18:31:21 +01:00
Bump version to 0.2.1
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user