From 29a5c057702b86c32fd94fdad1692bb6fd08fae5 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Fri, 10 Mar 2023 13:06:09 +0100 Subject: [PATCH] Bump version to 0.2.3 --- CHANGELOG.md | 16 +++++++++++++++- Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d00818f..315ab86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index caac23e..c1d3c8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique" -version = "0.2.2" +version = "0.2.3" authors = ["Lukas Kalbertodt "] 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 } diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 2ee8f76..a1854b0 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confique-macro" -version = "0.0.7" +version = "0.0.8" authors = ["Lukas Kalbertodt "] edition = "2021"