Skip to content

Commit 59fb484

Browse files
fix(cd) prefix version with v to adjust to uv/poetry 2.3.0 output (#3115)
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.
1 parent 0d632cb commit 59fb484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/helper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cd "$path" || exit 1
2727
version=$(uv version)
2828

2929
# Get the version number
30-
version_number="${version##* }"
30+
version_number="v${version##* }"
3131

3232
# Get the path and version string
3333
path_version="$path$version_number"

0 commit comments

Comments
 (0)