You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2016/02/18 00:12:05 UTC

[1/3] usergrid git commit: Preparing for release.

Repository: usergrid
Updated Branches:
  refs/heads/release e90154132 -> 8fe03a949


Preparing for release.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/b3b84d77
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/b3b84d77
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/b3b84d77

Branch: refs/heads/release
Commit: b3b84d77bf4f2a5a54940706b588cf1279656228
Parents: e901541
Author: Dave Johnson <sn...@apache.org>
Authored: Wed Feb 17 18:01:23 2016 -0500
Committer: Dave Johnson <sn...@apache.org>
Committed: Wed Feb 17 18:01:23 2016 -0500

----------------------------------------------------------------------
 release/release.sh | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/b3b84d77/release/release.sh
----------------------------------------------------------------------
diff --git a/release/release.sh b/release/release.sh
index ad9984f..00cfd11 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -265,12 +265,15 @@ The current Git commit ID is ${current_commit_id}
 
 The release is available at:
 ${usergrid_svn_dist_url}/${current_version}/${dist_name}.tar.gz
+${usergrid_svn_dist_url}/${current_version}/${binary_name}.tar.gz
 
 The MD5 checksum of the release can be found at:
 ${usergrid_svn_dist_url}/${current_version}/${dist_name}.tar.gz.md5
+${usergrid_svn_dist_url}/${current_version}/${binary_name}.tar.gz.md5
 
 The signature of the release can be found at:
 ${usergrid_svn_dist_url}/${current_version}/${dist_name}.tar.gz.asc
+${usergrid_svn_dist_url}/${current_version}/${binary_name}.tar.gz.asc
 
 The GPG key used to sign the release are available at:
 ${usergrid_svn_dist_url}/KEYS


[2/3] usergrid git commit: Preparing for release.

Posted by sn...@apache.org.
Preparing for release.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/74f8fcfb
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/74f8fcfb
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/74f8fcfb

Branch: refs/heads/release
Commit: 74f8fcfb5532aa66e71ac27946f1c04f33e60cfa
Parents: b3b84d7
Author: Dave Johnson <sn...@apache.org>
Authored: Wed Feb 17 18:06:55 2016 -0500
Committer: Dave Johnson <sn...@apache.org>
Committed: Wed Feb 17 18:06:55 2016 -0500

----------------------------------------------------------------------
 release/release.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/74f8fcfb/release/release.sh
----------------------------------------------------------------------
diff --git a/release/release.sh b/release/release.sh
index 00cfd11..9ecf4d7 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -101,8 +101,8 @@ base_dir=$(git rev-parse --show-toplevel)
 if [[ -n "`git status --porcelain`" ]]; then
   echo "ERROR: Please run from a clean $RELEASE_BRANCH"
   exit 1
-elif [[ "`git rev-parse --abbrev-ref HEAD`" == "$RELEASE_BRANCH" ]]; then
-  echo "ERROR: This script must be run from the released branch."
+elif [[ "`git rev-parse --abbrev-ref HEAD`" == $RELEASE_BRANCH ]]; then
+  echo "ERROR: This script must be run from the ${RELEASE_BRANCH} branch."
   exit 1
 fi
 


[3/3] usergrid git commit: Preparing for release.

Posted by sn...@apache.org.
Preparing for release.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/8fe03a94
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/8fe03a94
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/8fe03a94

Branch: refs/heads/release
Commit: 8fe03a949d39bd6bac626694cf2d091aa56c224b
Parents: 74f8fcf
Author: Dave Johnson <sn...@apache.org>
Authored: Wed Feb 17 18:12:00 2016 -0500
Committer: Dave Johnson <sn...@apache.org>
Committed: Wed Feb 17 18:12:00 2016 -0500

----------------------------------------------------------------------
 release/release.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/8fe03a94/release/release.sh
----------------------------------------------------------------------
diff --git a/release/release.sh b/release/release.sh
index 9ecf4d7..2c7b51b 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -101,7 +101,7 @@ base_dir=$(git rev-parse --show-toplevel)
 if [[ -n "`git status --porcelain`" ]]; then
   echo "ERROR: Please run from a clean $RELEASE_BRANCH"
   exit 1
-elif [[ "`git rev-parse --abbrev-ref HEAD`" == $RELEASE_BRANCH ]]; then
+elif [[ "`git rev-parse --abbrev-ref HEAD`" != $RELEASE_BRANCH ]]; then
   echo "ERROR: This script must be run from the ${RELEASE_BRANCH} branch."
   exit 1
 fi