Versions Compared

Key

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

...

  1. Create a branch for the release:
     git checkout -b $VERSION-RC
    
  2. Set the final release version number in the gradle.properties file
  3. Modify the HISTORY file
  4. Execute ./gradlew clean distribute -x check -x test to update version strings

    Execute a build to update version strings etc. (you may want to skip checks and tests by adding "-x check -x test"):

    /gradlew clean distribute 
  5. Commit the changes
  6. Push the branch
     git push -u origin $VERSION
    

...