fix: multiple version tags per release bug in release tooling (#1166)

This commit is contained in:
Joe Rickerby
2022-07-03 14:00:19 -04:00
committed by GitHub
parent 9a537512c1
commit d02366f547
+1 -1
View File
@@ -184,7 +184,7 @@ def bump_version() -> None:
print()
release_url = "https://github.com/pypa/cibuildwheel/releases/new?" + urllib.parse.urlencode(
{"tag": new_version}
{"tag": f"v{new_version}"}
)
print("Then create a release at the URL:")
print(f" {release_url}")