From 769ac75532619f454f6f5146e4aedc83573b6495 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:51:00 +0000 Subject: [PATCH 1/2] Initial plan From 2dc0b9dd3ad4891fce215ba9a71185c882216091 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:52:22 +0000 Subject: [PATCH 2/2] Fix: Trim whitespace from version string in release workflow Co-authored-by: Stalin-143 <161853795+Stalin-143@users.noreply.github.com> --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2a8cf1..80ec1fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -139,6 +139,8 @@ jobs: else VERSION="${{ inputs.version }}" fi + # Trim leading and trailing whitespace + VERSION=$(echo "$VERSION" | xargs) echo "version=$VERSION" >> $GITHUB_OUTPUT # Determine if it's a prerelease (contains hyphen after version number) if [[ "$VERSION" =~ ^v[0-9]+\.[0-9]+\.[0-9]+-.+ ]]; then