From 37beb07f344ff2d3a6a048b13b97fc747cb82f5d Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Wed, 25 Sep 2024 09:06:09 +0200 Subject: [PATCH] Release 0.7.0 --- CHANGELOG.md | 7 ++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd8f199..b7396f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -# unreleased +# 0.7.0 (released on 2024-09-25) +- Breaking change: Don't search in ignored files (those specified in .ignore/.gitignore) by default. It's possible to use `--no-ignore` to search in these directories by default (#137). +- Improved: fix false positives for multi dependencies single use statements (#120). This improves precision at the cost of a small performance hit. +- Improved: make usage of `--with-medata` more accurate (#122, #132). +- Improved: instead of displaying `.` for the current directory, `cargo-machete` will now display `this directory` (#109). +- Added: There's now an automated docker image build that publishes to the [github repository](https://github.com/bnjbvr/cargo-machete/pkgs/container/cargo-machete) (#121). - Added: `--ignore` flag which make cargo-machete respect .ignore and .gitignore files when searching for files (#95). # 0.6.2 (released on 2024-03-24) diff --git a/Cargo.lock b/Cargo.lock index 631a870..0e1980a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "cargo-machete" -version = "0.6.2" +version = "0.7.0" dependencies = [ "anyhow", "argh", diff --git a/Cargo.toml b/Cargo.toml index 6266b45..85ff3c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cargo-machete" edition = "2021" -version = "0.6.2" +version = "0.7.0" description = "Find unused dependencies with this one weird trick!" authors = ["Benjamin Bouvier "] repository = "https://github.com/bnjbvr/cargo-machete"