Skip to content

Commit 29a5c05

Browse files
Bump version to 0.2.3
1 parent 20f0379 commit 29a5c05

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [0.2.3] - 2023-03-10
9+
### Fixed
10+
- Add `#[allow(missing_docs)]` to some generated code to avoid problems in
11+
crates that `#[forbid(missing_docs)]` globally.
12+
- Fix badge in README
13+
14+
### Added
15+
- Add short docs to generated module (to explains its purpose and avoid
16+
confusion when people find it in their docs)
17+
18+
### Changed
19+
- Internal change that potentially improves compile time a tiny bit.
20+
821
## [0.2.2] - 2022-11-25
922
### Fixed
1023
- Use fully qualified paths for all symbols emitted by the derive macro.
@@ -80,7 +93,8 @@ All notable changes to this project will be documented in this file.
8093
- Everything.
8194

8295

83-
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...HEAD
96+
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.3...HEAD
97+
[0.2.3]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...v0.2.3
8498
[0.2.2]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...v0.2.2
8599
[0.2.1]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...v0.2.1
86100
[0.2.0]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...v0.2.0

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

0 commit comments

Comments
 (0)