From b0142f1dad517870145cdee63c37006af3a5d26c Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Tue, 22 Oct 2024 00:23:08 +0000 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9841c06b..384e4a7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.5.0 + +- Clarify "newer version is available" message ([#394](https://github.com/trailofbits/cargo-unmaintained/pull/394)) +- FEATURE: Add `--save-token` option to store a personal access token in $HOME/.config/cargo-unmaintained/token.txt on Linux/macOS, or %LOCALAPPDATA%\cargo-unmaintained\token.txt on Windows. Note that the existing means for providing a personal access token (`GITHUB_TOKEN_PATH` and `GITHUB_TOKEN`) continue to work as before. ([9a529aa](https://github.com/trailofbits/cargo-unmaintained/commit/9a529aadbada51a543b4db94cef21efd2c3f5ffc)) + ## 1.4.0 - Fix three bugs introduced by [#325](https://github.com/trailofbits/cargo-unmaintained/pull/325): diff --git a/Cargo.lock b/Cargo.lock index d6f86056..ca19bf7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ [[package]] name = "cargo-unmaintained" -version = "1.4.0" +version = "1.5.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 63311f62..2aae38d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-unmaintained" -version = "1.4.0" +version = "1.5.0" authors = ["Samuel Moelius "] description = "Find unmaintained packages in Rust projects" edition = "2021"