Versions Compared

Key

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

...

Create a release candidate branch and a development branch, release testing wiki page and notify developers to test.For the below example, pretend the release number is 4.5.0

 

Code Block
titleVariable release number
RC_VERSION=4.5.1

Using the above variables, complete the below git commands for each module being released.

NOTE: The value of RC_VERSION will vary for each release.

Code Block
git checkout master
git pull
git push origin master:4.5.0${RC_VERSION}-RC
git push origin master:DEV

...