Versions Compared

Key

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

...

Create document from next development version and publish it as snapshot version.

Code Block
languagebash
# Build release version document
$ cd zeppelin
$ git checkout v0.6.0
$ cd docs
$ bundle exec jekyll build --safe
 
# checkout ASF repo and copy release document to it
$ svn co https://svn.apache.org/repos/asf/zeppelin asf-zeppelin
$ cp -R _site asf-zeppelin/site/docs/0.6.0
 
# Build develop version document
$ git checkout master
$ bundle exec
$ bundle exec jekyll build --safe
 
# copy develop version document to ASF repo
$ cp -R _site asf-zeppelin/site/docs/0.7.0-SNAPSHOT
 
 
$ svn delete 0.6.0-SNAPSHOT
$ svn add 0.6.0
$ svn add 0.7.0-SNAPSHOT

Modify  .htaccess file in gh-pages branch "latest" to point "new version".

Announce the release

New release can be announced to some mailing lists such as

...