diff --git a/CHANGELOG.md b/CHANGELOG.md index 4441073..4847bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.13.2](https://github.com/Boshen/cargo-shear/compare/v1.13.1...v1.13.2) - 2026-07-16 + +### ๐Ÿ› Bug Fixes +- detect serde attributes inside macros ([#543](https://github.com/Boshen/cargo-shear/pull/543)) (by @Boshen) + +### ๐Ÿ“š Documentation +- add security policy ([#537](https://github.com/Boshen/cargo-shear/pull/537)) (by @Boshen) + +### ๐Ÿงช Testing +- cover serde attributes forwarded through another attribute ([#546](https://github.com/Boshen/cargo-shear/pull/546)) (by @Boshen) + +### Contributors + +* @renovate[bot] +* @Boshen + ## [1.13.1](https://github.com/Boshen/cargo-shear/compare/v1.13.0...v1.13.1) - 2026-06-06 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 79335db..4b3d500 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "cargo-shear" -version = "1.13.1" +version = "1.13.2" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index ce11fa8..a396153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shear" -version = "1.13.1" +version = "1.13.2" edition = "2024" description = "Detect and fix unused/misplaced dependencies from Cargo.toml" authors = ["Boshen "]