Skip to content

Commit 9236cdf

Browse files
bm1549claude
andauthored
Change build version format to include 'dev' (#3982)
* Change build version format to include 'dev' * Fix version formatting in append-build-id.sh * Fix version string to use valid semver build metadata separator +dev+<sha> is not valid semver; build metadata fields must be dot-separated. Change to +dev.<sha> so the semantic_version library accepts it. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 13a9453 commit 9236cdf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.gitlab/append-build-id.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ else
2525
parts[2]=0
2626
version=$(export IFS=.; (echo "${parts[*]}"))
2727
fi
28-
version="$version+$githash"
28+
version="$version+dev.$githash"
2929
echo -n "$version" > VERSION
3030
echo "Set version number to $version."
3131
fi

0 commit comments

Comments
 (0)