Skip to content

Commit

Permalink
1.0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ebfull committed Nov 8, 2016
1 parent 3920292 commit 996fccf
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Zcash 1.0.1
Zcash 1.0.2
===========

What is Zcash?
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 50)
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)))
Expand Down
6 changes: 6 additions & 0 deletions contrib/DEBIAN/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
zcash (1.0.2) jessie; urgency=medium

* 1.0.2 release.

-- Zcash Company <[email protected]> Mon, 07 Nov 2016 19:01:35 -0600

zcash (1.0.1) jessie; urgency=medium

* 1.0.1 release.
Expand Down
2 changes: 1 addition & 1 deletion contrib/DEBIAN/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Build-Depends: autoconf, automake, bsdmainutils, build-essential
Vcs-Git: https://github.com/zcash/zcash.git
Vcs-Browser: https://github.com/zcash/zcash
Package: zcash
Version: 1.0.1
Version: 1.0.2
Architecture: amd64
Depends: libgomp1
Description: An implementation of the "Zerocash" protocol.
Expand Down
4 changes: 2 additions & 2 deletions contrib/DEBIAN/manpages/zcash-cli.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH ZCASH-CLI "1" "November 2016" "Zcash RPC client version v1.0.1" "User Commands"
.TH ZCASH-CLI "1" "November 2016" "Zcash RPC client version v1.0.2" "User Commands"
.SH NAME
zcash-cli \- RPC client for the Zcash daemon
.SH DESCRIPTION
Zcash RPC client version v1.0.1
Zcash RPC client version v1.0.2
.SS "Usage:"
.TP
zcash\-cli [options] <command> [params]
Expand Down
4 changes: 2 additions & 2 deletions contrib/DEBIAN/manpages/zcashd.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH ZCASHD "1" "November 2016" "Zcash Daemon version v1.0.1" "User Commands"
.TH ZCASHD "1" "November 2016" "Zcash Daemon version v1.0.2" "User Commands"
.SH NAME
zcashd \- Network daemon for interacting with the Zcash blockchain
.SH DESCRIPTION
Zcash Daemon version v1.0.1
Zcash Daemon version v1.0.2
.SS "Usage:"
.TP
zcashd [options]
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "zcash-1.0.1"
name: "zcash-1.0.2"
enable_cache: true
distro: "debian"
suites:
Expand Down
16 changes: 16 additions & 0 deletions doc/release-notes/release-notes-1.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ITH4Coinomia (2):
Update security-warnings.md
Update init.cpp

S. Matthew English (1):
enforcing consistency 'tor' to 'Tor'

Sean Bowe (1):
Write R1CS output to file in GenerateParams.

Simon (4):
Fixes #1762 segfault when miner is interrupted.
Fixes #1779 so that sending to multiple zaddrs no longer fails.
Add GenIdentity, an identity function for MappedShuffle.
Add transaction size and zaddr output limit checks to z_sendmany.

2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 50

//! Set to true for release, false for prerelease or test build
Expand Down

0 comments on commit 996fccf

Please sign in to comment.