Skip to content

Commit

Permalink
fix: multiple version tags per release bug in release tooling (#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Jul 3, 2022
1 parent 9a53751 commit d02366f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/bump_version.py
Expand Up @@ -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}")
Expand Down

0 comments on commit d02366f

Please sign in to comment.