We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f018086 commit f92adc7Copy full SHA for f92adc7
Scripts/release.py
@@ -48,6 +48,11 @@ def main():
48
print("Error: Version must follow vMAJOR.MINOR.PATCH format.")
49
return
50
51
+ confirmation = input(f"Have you updated the changelog (CHANGELOG.md)? [Y/n]: ").strip().lower()
52
+ if confirmation not in ('y', 'yes', ''):
53
+ print("Aborted.")
54
+ return
55
+
56
confirmation = input(f"Are you sure you want to tag and commit as {new_version}? [Y/n]: ").strip().lower()
57
if confirmation not in ('y', 'yes', ''):
58
print("Aborted.")
0 commit comments