From 4cd2381cfa5b9d9b4124eae400e98a22c8979bcd Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Wed, 25 Feb 2026 11:47:36 +0100 Subject: [PATCH] fix(cd) prefix version with v to adjust to uv/poetry 2.3.0 output CD used poetry 2.2.1 which reported the version of a package with `v` prefix. By switching to poetry 2.3.0 or uv the output changed to just the version number. Prefixed the version number with `v` in the helper script to adjust to this change. --- scripts/helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helper.sh b/scripts/helper.sh index 43743301..35c31355 100755 --- a/scripts/helper.sh +++ b/scripts/helper.sh @@ -27,7 +27,7 @@ cd "$path" || exit 1 version=$(uv version) # Get the version number -version_number="${version##* }" +version_number="v${version##* }" # Get the path and version string path_version="$path$version_number"