diff --git a/CHANGELOG.md b/CHANGELOG.md index 2db754e7..9841c06b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.4.0 + +- Fix three bugs introduced by [#325](https://github.com/trailofbits/cargo-unmaintained/pull/325): + - Avoid divide by zero in `Progress::draw` ([ef24aa9](https://github.com/trailofbits/cargo-unmaintained/commit/ef24aa968b4618a3beefd7daa989ace0082a8180)) + - Write warnings on new lines ([5d31493](https://github.com/trailofbits/cargo-unmaintained/commit/5d314938f0372fa8a222211bb21f4773a0330508)) + - Don't assert in `Progress::finish` ([#331](https://github.com/trailofbits/cargo-unmaintained/pull/331)) +- Update README.md ([#334](https://github.com/trailofbits/cargo-unmaintained/pull/334) and [#340](https://github.com/trailofbits/cargo-unmaintained/pull/340)) +- Update `--no-cache` description ([#329](https://github.com/trailofbits/cargo-unmaintained/pull/329)) +- FEATURE: Before reporting that a package is unmaintained, verify that its latest version would be considered unmaintained as well ([#339](https://github.com/trailofbits/cargo-unmaintained/pull/339)) + ## 1.3.0 - FEATURE: Better progress reporting ([#325](https://github.com/trailofbits/cargo-unmaintained/pull/325)) diff --git a/Cargo.lock b/Cargo.lock index 0253865e..3c01ccb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -227,7 +227,7 @@ dependencies = [ [[package]] name = "cargo-unmaintained" -version = "1.3.0" +version = "1.4.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 204400b0..fe605988 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-unmaintained" -version = "1.3.0" +version = "1.4.0" authors = ["Samuel Moelius "] description = "Find unmaintained packages in Rust projects" edition = "2021"