diff --git a/CHANGELOG.md b/CHANGELOG.md index 93194a1..22080f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Make aliases case-insensitive by @daimond113 +- Print "update available" message to stderr by @daimond113 ## [0.6.0-rc.6] - 2025-02-10 ### Fixed diff --git a/src/cli/version.rs b/src/cli/version.rs index ebc8b17..43056e7 100644 --- a/src/cli/version.rs +++ b/src/cli/version.rs @@ -111,7 +111,7 @@ pub async fn check_for_updates(reqwest: &reqwest::Client) -> anyhow::Result<()> .collect::>() .join("\n"); - println!("\n{message}\n"); + eprintln!("\n{message}\n"); Ok(()) }