Skip to content

Commit ad48850

Browse files
Bump version to 0.2.1
1 parent c1ec947 commit ad48850

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file.
44

55

66
## [Unreleased]
7+
8+
## [0.2.1] - 2022-11-06
79
### Added
810
- `parse_env` attribute for custom parsing of environment variables (allows you
911
to load lists and other complex objects from env vars).
12+
(in [#22](https://github.com/LukasKalbertodt/confique/pull/22), thanks @cyphersnake)
13+
14+
### Changed
15+
- Updated `serde_yaml` to 0.9 (this is only an internal dependency).
1016

1117
## [0.2.0] - 2022-10-21
1218
### Added
@@ -65,7 +71,8 @@ All notable changes to this project will be documented in this file.
6571
- Everything.
6672

6773

68-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...HEAD
74+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...HEAD
75+
[0.2.1]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...v0.2.1
6976
[0.2.0]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...v0.2.0
7077
[0.1.4]: https://github.com/LukasKalbertodt/confique/compare/v0.1.3...v0.1.4
7178
[0.1.3]: https://github.com/LukasKalbertodt/confique/compare/v0.1.2...v0.1.3

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2021"
66

@@ -26,7 +26,7 @@ yaml = ["serde_yaml"]
2626

2727

2828
[dependencies]
29-
confique-macro = { version = "=0.0.5", path = "macro" }
29+
confique-macro = { version = "=0.0.6", path = "macro" }
3030
json5 = { version = "0.4.1", optional = true }
3131
serde = { version = "1", features = ["derive"] }
3232
serde_yaml = { version = "0.9", optional = true }

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique-macro"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2021"
66

0 commit comments

Comments
 (0)