diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c40b74..6a62325 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.6.6](https://github.com/Boshen/cargo-shear/compare/v1.6.5...v1.6.6) - 2025-11-26 + +### Fixed + +- fix incorrect `--version` output ([#326](https://github.com/Boshen/cargo-shear/pull/326)) + +### Other + +- Fix detection of redundant workspace ignores ([#324](https://github.com/Boshen/cargo-shear/pull/324)) +- Switch from `syn` to `ra_ap_syntax` for parsing ([#322](https://github.com/Boshen/cargo-shear/pull/322)) + ## [1.6.5](https://github.com/Boshen/cargo-shear/compare/v1.6.4...v1.6.5) - 2025-11-24 ### Other diff --git a/Cargo.lock b/Cargo.lock index 1b8ac78..44ba902 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,7 +69,7 @@ dependencies = [ [[package]] name = "cargo-shear" -version = "1.6.5" +version = "1.6.6" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index dca5e86..9e4bde4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shear" -version = "1.6.5" +version = "1.6.6" edition = "2024" description = "Detect and fix unused/misplaced dependencies from Cargo.toml" authors = ["Boshen "]