Skip to content

Commit d02366f

Browse files
authored
fix: multiple version tags per release bug in release tooling (#1166)
1 parent 9a53751 commit d02366f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/bump_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def bump_version() -> None:
184184
print()
185185

186186
release_url = "https://github.com/pypa/cibuildwheel/releases/new?" + urllib.parse.urlencode(
187-
{"tag": new_version}
187+
{"tag": f"v{new_version}"}
188188
)
189189
print("Then create a release at the URL:")
190190
print(f" {release_url}")

0 commit comments

Comments
 (0)