diff --git a/CHANGELOG.md b/CHANGELOG.md index c14450f..b9f3db7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.9.2](https://github.com/Boshen/cargo-shear/compare/v1.9.1...v1.9.2) - 2026-02-03 + +### 📚 Documentation +- clarify single-platform execution for CI ([#405](https://github.com/Boshen/cargo-shear/pull/405)) (by @Copilot) +- declare maintenance mode ([#393](https://github.com/Boshen/cargo-shear/pull/393)) (by @Boshen) + +### 💼 Other +- Add uutils/coreutils to the list of Trophy ([#413](https://github.com/Boshen/cargo-shear/pull/413)) (by @sylvestre) +- Fix detection of root-scoped paths in serde attributes ([#409](https://github.com/Boshen/cargo-shear/pull/409)) (by @Copilot) +- Revise maintenance mode note in README ([#394](https://github.com/Boshen/cargo-shear/pull/394)) (by @Boshen) +- Add --deny-warnings flag to treat warnings as errors ([#391](https://github.com/Boshen/cargo-shear/pull/391)) (by @Copilot) +- Suggest `--expand` when known codegen crates are in use ([#387](https://github.com/Boshen/cargo-shear/pull/387)) (by @CathalMullan) +- Add Windows CI, fix path separator handling ([#389](https://github.com/Boshen/cargo-shear/pull/389)) (by @CathalMullan) +- Add redundant workspace ignored-paths detection ([#385](https://github.com/Boshen/cargo-shear/pull/385)) (by @CathalMullan) + +### Contributors + +* @renovate[bot] +* @sylvestre +* @Copilot +* @Boshen +* @CathalMullan + ## [1.9.1](https://github.com/Boshen/cargo-shear/compare/v1.9.0...v1.9.1) - 2025-12-15 ### 💼 Other diff --git a/Cargo.lock b/Cargo.lock index aa0e9a3..5e58d4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "cargo-shear" -version = "1.9.1" +version = "1.9.2" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index 6c2a1e0..c51290a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shear" -version = "1.9.1" +version = "1.9.2" edition = "2024" description = "Detect and fix unused/misplaced dependencies from Cargo.toml" authors = ["Boshen "]