You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2015/07/07 01:53:16 UTC

[Hadoop Wiki] Trivial Update of "HowToRelease" by VinodKumarVavilapalli

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The "HowToRelease" page has been changed by VinodKumarVavilapalli:
https://wiki.apache.org/hadoop/HowToRelease?action=diff&rev1=73&rev2=74

Comment:
Adding a note about tagging releases after voting finishes.

    {{{
  python ./dev-support/relnotes.py -v $(vers)
  }}}
-    If your release includes more then one version you may add additional -v options for each version.  By default the previousVersion mentioned in the notes will be X.Y.Z-1, if this is not correct you can override this by setting the --previousVer option.
+    . If your release includes more then one version you may add additional -v options for each version.  By default the previousVersion mentioned in the notes will be X.Y.Z-1, if this is not correct you can override this by setting the --previousVer option.
    1. Update {{{releasenotes.html}}}
    {{{
  mv releasenotes.$(vers).html ./hadoop-common-project/hadoop-common/src/main/docs/releasenotes.html
  }}}
-    Note that the script generates a set of notes for HDFS, HADOOP, MAPREDUCE, and YARN too, but only common is linked from the html documentation so the indavidual ones are ignored for now.
+    . Note that the script generates a set of notes for HDFS, HADOOP, MAPREDUCE, and YARN too, but only common is linked from the html documentation so the indavidual ones are ignored for now.
    1. Commit these changes to branch-X.Y.Z
    {{{
  git commit -a -m "Preparing for release X.Y.Z"
@@ -140, +140 @@

   {{{
  git commit -a -m "Set the release date for X.Y.Z"
  }}}
-  1. Tag the release:
+  1. Tag the release. Do it from the release branch and push the created tag to the remote repository:
   {{{
  git tag -s release-X.Y.Z -m "Hadoop X.Y.Z release"
  }}}