Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix text typo and add apache prefix

...

Code Block
mvn versions:set -DnewVersion="x.y.z"
Modify CHANGES.txt to set the release date to when the vote will likely end ( +3 or 4 days from the vote start ).
Modify CHANGES.txt for this release's ChangeLog using "git log --pretty=onlineoneline"
Commit and push all the changes.

...

Code Block
git clean -f -x -d
cd ..
cp -R tez-git-x.y.z apache-tez-{x.y.z} (where tez-git-x.y.z is the tez code directory)
tar --exclude=.git -zcvf apache-tez-{x.y.z}.tar.gz apache-tez-{x.y.z}
Sign the Release
Code Block
gpg2  --armor --output apache-tez-{x.y.z}.tar.gz.asc --detach-sig apache-tez-{x.y.z}.tar.gz
Generate MD5 checksums
Code Block
md5sum apache-tez-{x.y.z}.tar.gz > apache-tez-{x.y.z}.tar.gz.md5
sha1sum apache-tez-{x.y.z}.tar.gz > apache-tez-{x.y.z}.tar.gz.sha1

or

Code Block
openssl md5 apache-tez-{x.y.z}.tar.gz > apache-tez-{x.y.z}.tar.gz.md5
openssl sha1 apache-tez-{x.y.z}.tar.gz > apache-tez-{x.y.z}.tar.gz.sha1
Create Binary Tarball as a helper for Users

...