Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleCreate release branch
# Create a release branch from dev

git branch rel/VERSION 
#e.g., git branch rel/0.66.0

# checkout and push the release branch

In the release branch, change the version to the current SNAPSHOT version of the release:

...



# checkout dev and update version
./upgrade_versions.sh NEW_SNAPSHOT_VERSION
git push origin


Checkout dev and change the aforementioned versions to the next release version (e.g., 0.67.0-SNAPSHOT)

...