Versions Compared

Key

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

...

Code Block
languagebash
# Prepare release
$ mvn versions:set -DnewVersion=0.6.0 -DgenerateBackupPoms=false
$ git commit -a -m "Preparing Apache Zeppelin release 0.6.0"
$ git tag v0.6.0-rc1
 
# Prepare next development version
$ mvn versions:set -DnewVersion=0.6.1-SNAPSHOT -DgenerateBackupPoms=false
$ git commit -a -m "Preparing development version 0.6.1-SNAPSHOT"
 
# Push changes
$ git push origin v0.6.0-rc1
$ git push origin HEAD:branch-0.6

Document Version

In docs/_config.yml ZEPPELIN_VERSION and BASE_PATH need to be updated for next development version.

Create release Candidate

Create source and binary package

...