Browse Source

Auto merge of #2162 - arcalinea:release_process_1.0.7-1, r=str4d

Release process 1.0.7 1
pull/4/head v1.0.7-1
zkbot 7 years ago
parent
commit
00740e0358
  1. 4
      README.md
  2. 2
      configure.ac
  3. 8
      contrib/debian/changelog
  4. 2
      contrib/gitian-descriptors/gitian-linux.yml
  5. 2
      doc/authors.md
  6. 2
      doc/man/zcash-cli.1
  7. 2
      doc/man/zcash-tx.1
  8. 2
      doc/man/zcashd.1
  9. 4
      doc/release-notes/release-notes-1.0.7-1.md
  10. 2
      src/clientversion.h
  11. 2
      zcutil/release-notes.py

4
README.md

@ -1,5 +1,5 @@
Zcash 1.0.7
===========
Zcash 1.0.7-1
=============
What is Zcash?
--------------

2
configure.ac

@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 7)
define(_CLIENT_VERSION_BUILD, 50)
define(_CLIENT_VERSION_BUILD, 51)
define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLIENT_VERSION_BUILD), m4_eval(_CLIENT_VERSION_BUILD < 50), 1, m4_eval(_CLIENT_VERSION_BUILD - 24), m4_eval(_CLIENT_VERSION_BUILD == 50), 1, , m4_eval(_CLIENT_VERSION_BUILD - 50)))
define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1)))
define(_CLIENT_VERSION_IS_RELEASE, true)

8
contrib/debian/changelog

@ -1,6 +1,12 @@
zcash (1.0.7+1) jessie; urgency=medium
* 1.0.7-1 release.
-- Zcash Company <team@z.cash> Wed, 08 Mar 2017 13:51:11 -0800
zcash (1.0.7) jessie; urgency=medium
* 1.0.7 release.
* 1.0.7 release.
-- Zcash Company <team@z.cash> Fri, 03 Mar 2017 20:55:04 -0800

2
contrib/gitian-descriptors/gitian-linux.yml

@ -1,5 +1,5 @@
---
name: "zcash-1.0.7"
name: "zcash-1.0.7-1"
enable_cache: true
distro: "debian"
suites:

2
doc/authors.md

@ -7,7 +7,7 @@ Sean Bowe (183)
Taylor Hornby (65)
Daira Hopwood (65)
Jonas Schnelli (47)
Jay Graber (39)
Jay Graber (42)
Kevin Gallagher (38)
Wladimir J. van der Laan (30)
Cory Fields (13)

2
doc/man/zcash-cli.1

@ -3,7 +3,7 @@
.SH NAME
zcash-cli \- manual page for zcash-cli v1.0.7
.SH DESCRIPTION
Zcash RPC client version v1.0.7
Zcash RPC client version v1.0.7-1
.SS "Usage:"
.TP
zcash\-cli [options] <command> [params]

2
doc/man/zcash-tx.1

@ -3,7 +3,7 @@
.SH NAME
zcash-tx \- manual page for zcash-tx v1.0.7
.SH DESCRIPTION
Zcash zcash\-tx utility version v1.0.7
Zcash zcash\-tx utility version v1.0.7-1
.SS "Usage:"
.TP
zcash\-tx [options] <hex\-tx> [commands]

2
doc/man/zcashd.1

@ -3,7 +3,7 @@
.SH NAME
zcashd \- manual page for zcashd v1.0.7
.SH DESCRIPTION
Zcash Daemon version v1.0.7
Zcash Daemon version v1.0.7-1
.SS "Usage:"
.TP
zcashd [options]

4
doc/release-notes/release-notes-1.0.7-1.md

@ -0,0 +1,4 @@
Jay Graber (3):
Add -t to git fetch for release-notes.py
Update version to 1.0.7-1
Update auto-generated manpages to 1.0.7-1

2
src/clientversion.h

@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 7
#define CLIENT_VERSION_BUILD 50
#define CLIENT_VERSION_BUILD 51
//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true

2
zcutil/release-notes.py

@ -71,7 +71,7 @@ def document_authors():
def generate_release_note(version, filename):
print "Automatically generating release notes for {0} from git shortlog. Should review {1} for accuracy.".format(version, filename)
# fetches latest tags, so that latest_tag will be correct
subprocess.Popen(['git fetch'], shell=True, stdout=subprocess.PIPE).communicate()[0]
subprocess.Popen(['git fetch -t'], shell=True, stdout=subprocess.PIPE).communicate()[0]
latest_tag = subprocess.Popen(['git describe --abbrev=0'], shell=True, stdout=subprocess.PIPE).communicate()[0].strip()
print "Previous release tag: ", latest_tag
notes = subprocess.Popen(['git shortlog --no-merges {0}..HEAD'.format(latest_tag)], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE).communicate()[0]

Loading…
Cancel
Save