summaryrefslogtreecommitdiff
path: root/scripts/dev/update_version.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/update_version.py')
-rw-r--r--scripts/dev/update_version.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/update_version.py b/scripts/dev/update_version.py
index 6cf6a1013..7b399d025 100644
--- a/scripts/dev/update_version.py
+++ b/scripts/dev/update_version.py
@@ -68,7 +68,7 @@ if __name__ == "__main__":
print("Run the following commands to create a new release:")
print("* git push origin; git push origin v{v}".format(v=version))
if args.bump == 'patch':
- print("* git checkout master && git cherry-pick v{v} && "
+ print("* git checkout main && git cherry-pick v{v} && "
"git push origin".format(v=version))
else:
print("* git branch v{x} v{v} && git push --set-upstream origin v{x}"