Repository: couchdb Updated Branches: refs/heads/master 9b7511a84 -> bdb68b9c0
feat: improve `make rc`: show list of commits since last RC Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/bdb68b9c Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/bdb68b9c Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/bdb68b9c Branch: refs/heads/master Commit: bdb68b9c038290b007173057190a274cdce2afe8 Parents: 9b7511a Author: Jan Lehnardt <[email protected]> Authored: Thu Jul 21 10:46:10 2016 +0200 Committer: Jan Lehnardt <[email protected]> Committed: Thu Jul 21 10:46:10 2016 +0200 ---------------------------------------------------------------------- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/bdb68b9c/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index 11b3267..2c9075b 100644 --- a/Makefile +++ b/Makefile @@ -337,10 +337,14 @@ ifeq ($(strip $(COUCH_RC)),) @echo "COUCH_RC environment variable not set. Run as 'COUCH_RC=X make rc'" else @rm -rf apache-couchdb-* - @$(MAKE) dist + @$(MAKE) dist 2>&1 > /dev/null @rm apache-couchdb-*.tar.gz @mv apache-couchdb-* apache-couchdb-2.0.0-RC$(COUCH_RC) @tar czf apache-couchdb-2.0.0-RC$(COUCH_RC).tar.gz apache-couchdb-2.0.0-RC$(COUCH_RC) + @echo "Done apache-couchdb-2.0.0-RC$(COUCH_RC).tar.gz" + @echo "Here is the list of commits since the last RC" + @git log --left-right --graph --cherry-pick --oneline 2.0.0-RC$(shell echo $(COUCH_RC)-1 | bc)...master + @echo "Done!" endif ################################################################################
