diff --git a/CHANGELOG.md b/CHANGELOG.md index b4ae82ea..f3c86e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1](https://github.com/cornucopia-rs/cornucopia/compare/cornucopia-v1.0.0...cornucopia-v1.0.1) - 2026-07-20 + +### Fixed + +- remove redundant references in format! args for clippy 1.97 +- adapt to cargo_toml 1.0 typed version requirements + +### Other + +- Merge branch 'main' into dependabot/cargo/uuid-1.24.0 + ## [1.0.0](https://github.com/cornucopia-rs/cornucopia/compare/cornucopia-v0.9.0...cornucopia-v1.0.0) - 2026-05-20 This release merges the [Clorinde](https://github.com/halcyonnouveau/clorinde) fork back into Cornucopia. The historical Clorinde changelog is preserved below for reference. See the [migration guide](https://cornucopia-rs.github.io/migration.html) for upgrading from 0.9. diff --git a/Cargo.lock b/Cargo.lock index 22ec0d9d..07f40884 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -685,7 +685,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cornucopia" -version = "1.0.0" +version = "1.0.1" dependencies = [ "cargo_toml", "chumsky", diff --git a/Cargo.toml b/Cargo.toml index cab1a08c..02648db3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cornucopia" -version = "1.0.0" +version = "1.0.1" edition = "2024" rust-version = "1.88.0" license = "MIT/Apache-2.0"