From 82e0d384838bd44d35d0ad0a70988dc1eb6795ff Mon Sep 17 00:00:00 2001 From: daimond113 Date: Thu, 13 Feb 2025 20:10:08 +0100 Subject: [PATCH] fix: print update available message to stderr Previously, the update available message was printed to stdout, which is not the correct place for such messages. This commit changes the message to be printed to stderr instead, which will prevent potential issues with piping the output of the command to another command. --- CHANGELOG.md | 1 + src/cli/version.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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(()) }