Skip to content

Commit 8124333

Browse files
committed
Add release steps to bump_version script
1 parent 65c7a69 commit 8124333

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

bin/bump_version.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,17 @@ def bump_version() -> None:
177177
)
178178

179179
print("Done.")
180+
print()
181+
182+
print("Push the new version to GitHub with:")
183+
print(" git push && git push --tags")
184+
print()
185+
186+
release_url = "https://github.com/pypa/cibuildwheel/releases/new?" + urllib.parse.urlencode(
187+
{"tag": new_version}
188+
)
189+
print("Then create a release at the URL:")
190+
print(f" {release_url}")
180191

181192

182193
if __name__ == "__main__":

0 commit comments

Comments
 (0)