Skip to content

Commit 7830f32

Browse files
Bump version to 0.2.2
1 parent c6ee971 commit 7830f32

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8+
## [0.2.2] - 2022-11-25
9+
### Fixed
10+
- Use fully qualified paths for all symbols emitted by the derive macro.
11+
Before this, the derive would throw errors if you shadowed any of the symbols
12+
`Result`, `Option`, `Ok`, `None` or `Some`. A test has been added to make sure
13+
this does not happen again in the future.
14+
(Partially in [#23](https://github.com/LukasKalbertodt/confique/pull/23), thanks @aschey)
15+
16+
817
## [0.2.1] - 2022-11-06
918
### Added
1019
- `parse_env` attribute for custom parsing of environment variables (allows you
@@ -71,7 +80,8 @@ All notable changes to this project will be documented in this file.
7180
- Everything.
7281

7382

74-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...HEAD
83+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...HEAD
84+
[0.2.2]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...v0.2.2
7585
[0.2.1]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...v0.2.1
7686
[0.2.0]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...v0.2.0
7787
[0.1.4]: https://github.com/LukasKalbertodt/confique/compare/v0.1.3...v0.1.4

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.1"
3+
version = "0.2.2"
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.6", path = "macro" }
29+
confique-macro = { version = "=0.0.7", 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.6"
3+
version = "0.0.7"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2021"
66

0 commit comments

Comments
 (0)