Adds newline between source and package definition

Also updates doc/release-process.md instructions for the
Debian package and Gitian descriptor.
This commit is contained in:
Kevin Gallagher 2016-10-14 09:57:58 -07:00
parent 3327ef3df0
commit 1888d3d1bb
2 changed files with 15 additions and 3 deletions

View File

@ -9,6 +9,7 @@ Build-Depends: autoconf, automake, bsdmainutils, build-essential
unzip, wget, zlib1g-dev
Vcs-Git: git@github.com:zcash/zcash.git
Vcs-Browser: https://github.com/zcash/zcash
Package: zcash
Version: 1.0.0-rc1
Architecture: amd64

View File

@ -28,14 +28,17 @@ Also, the following commands use the `ZCASH_RELEASE_PREV` bash variable for the
previous release:
$ ZCASH_RELEASE_PREV=1.0.0-beta1
## B. create a new release branch / github PR
### B1. update (commit) version in sources
doc/README.md
src/clientversion.h
configure.ac
contrib/DEBIAN/control
contrib/gitian-descriptors/gitian-linux.yml
In `configure.ac` and `clientversion.h`:
- Increment `CLIENT_VERSION_BUILD` according to the following schema:
@ -56,12 +59,20 @@ git shortlog helps a lot, for example:
$ git shortlog --no-merges v${ZCASH_RELEASE_PREV}..HEAD \
> ./doc/release-notes/release-notes-${ZCASH_RELEASE}.md
Update the Debian package changelog:
export DEBVERSION='1.0.0-rc1'
export DEBEMAIL="${DEBEMAIL:-team@z.cash}"
export DEBFULLNAME="${DEBFULLNAME:-Zcash Company}"
dch -v $DEBVERSION -D jessie -c contrib/DEBIAN/changelog
### B3. change the network magics
If this release breaks backwards compatibility, change the network magic
numbers. Set the four `pchMessageStart` in `CTestNetParams` in `chainparams.cpp`
to random values.
### B4. merge the previous changes
Do the normal pull-request, review, testing process for this release PR.