diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e15cb..1d96739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.6.0 (released on 2023-09-23) + +- *Breaking*/improved: match against crate name case-insensitive (#69). +- Added: Github action (#85). See README for documentation. +- Added: support for ignored workspace dependencies (#57, #86). See README for documentation. +- Added: `--version` switch to print the version (#66). +- Fix: avoid searching for workspace Cargo.toml longer than needed (#84). +- Chore: better documentation and reporting (#63, #72, #80). + # 0.5.0 (released on 2022-11-15) - *Breaking*: Use `argh` for parsing. Now, paths of directories to scan must be passed in the last diff --git a/Cargo.lock b/Cargo.lock index 824ee62..b8fe63e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,7 +103,7 @@ dependencies = [ [[package]] name = "cargo-machete" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "argh", diff --git a/Cargo.toml b/Cargo.toml index 5da52e6..e08804d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cargo-machete" edition = "2021" -version = "0.5.0" +version = "0.6.0" description = "Find unused dependencies with this one weird trick!" authors = ["Benjamin Bouvier "] repository = "https://github.com/bnjbvr/cargo-machete"