Update set_core_version.py with new release process

This commit is contained in:
link2xt
2023-04-04 15:25:17 +00:00
parent b7bbb3ee9a
commit 15ce54edfb

View File

@@ -128,11 +128,15 @@ def main():
subprocess.call(["git", "add", "-u"])
# subprocess.call(["cargo", "update", "-p", "deltachat"])
print("after commit, on master make sure to: ")
print("")
print("After commit, make sure to:")
print()
print(f" git tag -a v{newversion}")
print(f" git push origin v{newversion}")
print("")
print(f" gh release create v{newversion} -n ''")
print()
print("Merge release branch into `master` if the release")
print("is made on a stable branch.")
print()
if __name__ == "__main__":