Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d171e47

Browse files
committedFeb 28, 2025
feat(release): update semver install version
Changes: - Updated the `go install` command to specify a fixed version of `semver` (v2.8.0) instead of using `latest`. - This ensures that the release script will use a consistent version of the `semver` tool, avoiding potential issues with breaking changes in future releases.
1 parent f7964a7 commit d171e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -eu -o pipefail
33

4-
go install github.com/ffurrer2/semver/v2/cmd/semver@latest
4+
go install github.com/ffurrer2/semver/v2/cmd/semver@v2.8.0
55

66
previous_version=$(git tag|sort -V|tail -n1)
77
new_version=v$(semver next patch $(echo $previous_version | sed 's/v//'))

0 commit comments

Comments
 (0)
Failed to load comments.