diff --git a/CHANGELOG.md b/CHANGELOG.md index b3cf7c73..1ce764da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.1 + +- Fix a bug causing --tree to fail ([#29](https://github.com/trailofbits/cargo-unmaintained/pull/29)) + ## 0.2.0 - Do not check for outdated dependencies in archived packages ([#22](https://github.com/trailofbits/cargo-unmaintained/pull/22)) diff --git a/Cargo.lock b/Cargo.lock index 6e1f2750..9f0b0c81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -238,7 +238,7 @@ dependencies = [ [[package]] name = "cargo-unmaintained" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 5b795641..a26cba39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-unmaintained" -version = "0.2.0" +version = "0.2.1" authors = ["Samuel Moelius "] description = "Find unmaintained packages in Rust projects" edition = "2021"