Skip to content

Commit 27b2620

Browse files
Bump version to 0.2.6
1 parent 5b5cdbc commit 27b2620

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Diff for: CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8+
## [0.2.6] - 2024-10-10
9+
- Fix compile errors when using `confique` derive without having `serde` in your direct dependencies (see [#38](https://github.com/LukasKalbertodt/confique/issues/38)).
10+
- Update `toml` dependency to 0.8
11+
- Fix some typos in docs
12+
813
## [0.2.5] - 2023-12-10
914
- Add `#[config(partial_attr(...))]` struct attribute to specify attributes for
1015
the partial type.
@@ -103,7 +108,8 @@ All notable changes to this project will be documented in this file.
103108
- Everything.
104109

105110

106-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...HEAD
111+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.6...HEAD
112+
[0.2.6]: https://github.com/LukasKalbertodt/confique/compare/v0.2.5...v0.2.6
107113
[0.2.5]: https://github.com/LukasKalbertodt/confique/compare/v0.2.4...v0.2.5
108114
[0.2.4]: https://github.com/LukasKalbertodt/confique/compare/v0.2.3...v0.2.4
109115
[0.2.3]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...v0.2.3

Diff for: Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2021"
66

@@ -31,7 +31,7 @@ yaml = ["serde_yaml"]
3131

3232

3333
[dependencies]
34-
confique-macro = { version = "=0.0.9", path = "macro" }
34+
confique-macro = { version = "=0.0.10", path = "macro" }
3535
json5 = { version = "0.4.1", optional = true }
3636
serde = { version = "1", features = ["derive"] }
3737
serde_yaml = { version = "0.9", optional = true }

Diff for: macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "confique-macro"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2021"
66

0 commit comments

Comments
 (0)