Skip to content

Commit 07fe6a5

Browse files
Bump version to 0.3.1
1 parent c56c4ae commit 07fe6a5

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8-
## [0.3.0] - 2024-10-18
8+
## [0.3.1] - 2025-07-26
9+
- Allow `#[config(partial_attr(...))]` on fields (thanks @aschey, in [#44](https://github.com/LukasKalbertodt/confique/pull/44))
10+
- Update `toml` dependency to 0.9
11+
- Fix outdated description in docs of `Partial::from_env`
12+
- Fix typo in docs
13+
- Fix license in `Cargo.toml` to use proper SPDX syntax
14+
- Specify exact version requirement of dependencies
915

16+
## [0.3.0] - 2024-10-18
1017
- **Breaking**: Raise MSRV to 1.61.0
1118
- **Breaking**: `toml`, `yaml` and `json5` are no longer default features ([`19d9ddc`](https://github.com/LukasKalbertodt/confique/commit/19d9ddc9537baf4e82274591ba92f02d4c5c1f36)). You now have to manually specify the features you need in `Cargo.toml`.
1219
- **Breaking**: env vars set to an empty string, which fail to deserialize/parse/validate are now treated as not set. This is technically a breaking change, but I think this is the expected behavior and shouldn't affect you. ([#39](https://github.com/LukasKalbertodt/confique/pull/39))
@@ -123,7 +130,8 @@ All notable changes to this project will be documented in this file.
123130
- Everything.
124131

125132

126-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.3.0...HEAD
133+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.3.1...HEAD
134+
[0.3.1]: https://github.com/LukasKalbertodt/confique/compare/v0.3.0...v0.3.1
127135
[0.3.0]: https://github.com/LukasKalbertodt/confique/compare/v0.2.6...v0.3.0
128136
[0.2.6]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...v0.2.6
129137
[0.2.5]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...v0.2.5

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.3.0"
3+
version = "0.3.1"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2021"
66
rust-version = "1.61.0"
@@ -40,7 +40,7 @@ yaml = ["serde_yaml"]
4040

4141

4242
[dependencies]
43-
confique-macro = { version = "=0.0.11", path = "macro" }
43+
confique-macro = { version = "=0.0.12", path = "macro" }
4444
json5 = { version = "0.4.1", optional = true }
4545
serde = { version = "1.0.145", features = ["derive"] }
4646
serde_yaml = { version = "0.9.0", 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.11"
3+
version = "0.0.12"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2021"
66

0 commit comments

Comments
 (0)