Bump version to 0.2.3

This commit is contained in:
Lukas Kalbertodt
2023-03-10 13:06:09 +01:00
parent 20f0379706
commit 29a5c05770
3 changed files with 18 additions and 4 deletions

View File

@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [0.2.3] - 2023-03-10
### Fixed
- Add `#[allow(missing_docs)]` to some generated code to avoid problems in
crates that `#[forbid(missing_docs)]` globally.
- Fix badge in README
### Added
- Add short docs to generated module (to explains its purpose and avoid
confusion when people find it in their docs)
### Changed
- Internal change that potentially improves compile time a tiny bit.
## [0.2.2] - 2022-11-25
### Fixed
- 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.
- Everything.
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...HEAD
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.2.3...HEAD
[0.2.3]: https://github.com/LukasKalbertodt/confique/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/LukasKalbertodt/confique/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/LukasKalbertodt/confique/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/LukasKalbertodt/confique/compare/v0.1.4...v0.2.0

View File

@@ -1,6 +1,6 @@
[package]
name = "confique"
version = "0.2.2"
version = "0.2.3"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2021"
@@ -26,7 +26,7 @@ yaml = ["serde_yaml"]
[dependencies]
confique-macro = { version = "=0.0.7", path = "macro" }
confique-macro = { version = "=0.0.8", path = "macro" }
json5 = { version = "0.4.1", optional = true }
serde = { version = "1", features = ["derive"] }
serde_yaml = { version = "0.9", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "confique-macro"
version = "0.0.7"
version = "0.0.8"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2021"