Skip to content

Commit 7ae3b21

Browse files
committed
fix: add v for semver compat across tools
1 parent be674c2 commit 7ae3b21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/release/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func createRelease(config Config, incMajor bool, incMinor bool, incPatch bool, i
196196
resetBeta = true
197197
}
198198

199-
updatedVersionString := fmt.Sprintf("%v.%v.%v", updatedVersion.major, updatedVersion.minor, updatedVersion.patch)
199+
updatedVersionString := fmt.Sprintf("v%v.%v.%v", updatedVersion.major, updatedVersion.minor, updatedVersion.patch)
200200

201201
if updatedVersion.beta {
202202
if resetBeta {

0 commit comments

Comments
 (0)