Use present wording in version bump script (#102897)

This commit is contained in:
Joost Lekkerkerker 2023-10-27 17:50:33 +02:00 committed by GitHub
parent ca5bcb9ab1
commit c3da075554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ def main():
if not arguments.commit:
return
subprocess.run(["git", "commit", "-nam", f"Bumped version to {bumped}"], check=True)
subprocess.run(["git", "commit", "-nam", f"Bump version to {bumped}"], check=True)
def test_bump_version():