You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2015/08/02 18:02:03 UTC

svn commit: r10046 - /dev/jclouds/prepare_release.sh

Author: nacx
Date: Sun Aug  2 16:02:02 2015
New Revision: 10046

Log:
Also generate the tag links for the vote thread

Modified:
    dev/jclouds/prepare_release.sh

Modified: dev/jclouds/prepare_release.sh
==============================================================================
--- dev/jclouds/prepare_release.sh (original)
+++ dev/jclouds/prepare_release.sh Sun Aug  2 16:02:02 2015
@@ -171,5 +171,23 @@ To complete the release:
   * Generate the JIRA release notes.
   * Call the vote!
 
+These are the tags to be voted upon:
+EOF
+
+for REPO in ${REPOS[@]}; do
+    TAG=${REPO}-${RELEASE}-${RC}
+
+    cd ${REPO}
+
+    REV=`git show-ref -s ${TAG}`
+    SHA=`git rev-list --max-count=1 ${TAG}`
+    echo "  * ${REPO}"
+    echo "    - tag: https://git-wip-us.apache.org/repos/asf?p=${REPO}.git;a=tag;h=${REV}"
+    echo "    - sha-1: ${SHA}"
+
+    cd ..
+done
+
+cat << EOF
 ***********************************************************************
 EOF