zcash-patched-for-explorer/doc/release-process.md

110 lines
3.1 KiB
Markdown
Raw Normal View History

2013-05-19 21:30:00 -07:00
Release Process
====================
2016-05-16 22:08:35 -07:00
Meta: There should always be a single release engineer to disambiguate responsibility.
2013-05-19 21:30:00 -07:00
## Pre-release
Check all of the following:
- All dependencies have been updated as appropriate:
- BDB
- Boost
- ccache
- libgmp
- libsnark (upstream of our fork)
- libsodium
- miniupnpc
- OpenSSL
2016-05-16 22:08:35 -07:00
## A. Define the release version as:
2013-05-19 21:30:00 -07:00
$ ZCASH_RELEASE=MAJOR.MINOR.REVISION(-BUILD_STRING)
Example:
2013-05-19 21:30:00 -07:00
$ ZCASH_RELEASE=1.0.0-beta2
Also, the following commands use the `ZCASH_RELEASE_PREV` bash variable for the
previous release:
2013-05-19 21:30:00 -07:00
$ ZCASH_RELEASE_PREV=1.0.0-beta1
2016-05-16 22:08:35 -07:00
## B. create a new release branch / github PR
### B1. update (commit) version in sources
2013-05-19 21:30:00 -07:00
2016-05-16 22:08:35 -07:00
doc/README.md
2016-06-16 18:32:55 -07:00
src/clientversion.h
configure.ac
2016-05-16 22:08:35 -07:00
In `configure.ac` and `clientversion.h`:
- Increment `CLIENT_VERSION_BUILD` according to the following schema:
- 0-24: `1.0.0-beta1`-`1.0.0-beta25`
2016-10-01 23:15:01 -07:00
- 25-49: `1.0.0-rc1`-`1.0.0-rc25`
- 50: `1.0.0`
- 51-99: `1.0.0-1`-`1.0.0-49`
- (`CLIENT_VERSION_REVISION` rolls over)
- 0-24: `1.0.1-beta1`-`1.0.1-beta25`
- Change `CLIENT_VERSION_IS_RELEASE` to false while Zcash is in beta-test phase.
2013-05-19 21:30:00 -07:00
2016-05-16 22:08:35 -07:00
### B2. write release notes
2014-08-12 16:24:05 -07:00
git shortlog helps a lot, for example:
2014-08-12 16:24:05 -07:00
$ git shortlog --no-merges v${ZCASH_RELEASE_PREV}..HEAD \
> ./doc/release-notes/release-notes-${ZCASH_RELEASE}.md
2016-06-16 18:46:43 -07:00
### 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.
2016-05-16 22:08:35 -07:00
2016-06-16 18:46:43 -07:00
### B4. merge the previous changes
2016-05-16 22:08:35 -07:00
Do the normal pull-request, review, testing process for this release PR.
2013-05-19 21:30:00 -07:00
2016-05-16 22:08:35 -07:00
## C. Verify code artifact hosting
2016-05-16 22:08:35 -07:00
### C1. Ensure depends tree is working
https://ci.z.cash/builders/depends-sources
2016-05-16 22:08:35 -07:00
### C2. Ensure public parameters work
Run `./fetch-params.sh`.
## D. make tag for the newly merged result
2013-05-19 21:30:00 -07:00
In this example, we ensure master is up to date with the
previous merged PR, then:
$ git tag -s v${ZCASH_RELEASE}
$ git push origin v${ZCASH_RELEASE}
2016-08-25 13:21:33 -07:00
## E. deploy testnet
Notify the Zcash DevOps engineer/sysadmin that the release has been tagged. They update some variables in the company's automation code and then run an Ansible playbook, which:
* builds Zcash based on the specified branch
* deploys it as a public service (e.g. betatestnet.z.cash, mainnet.z.cash)
* often the same server can be re-used, and the role idempotently handles upgrades, but if not then they also need to update DNS records
* possible manual steps: blowing away the `testnet3` dir, deleting old parameters, restarting DNS seeder
Then, verify that nodes can connect to the testnet server, and update the guide on the wiki to ensure the correct hostname is listed in the recommended zcash.conf.
2016-08-25 13:21:33 -07:00
## F. publish the release announcement (blog, zcash-dev, slack)
## G. celebrate
2016-05-16 22:08:35 -07:00
## missing steps
Zcash still needs:
* deterministic or reproducible builds
2013-05-19 21:30:00 -07:00
2016-05-16 22:08:35 -07:00
* thorough pre-release testing (presumably more thorough than standard PR tests)
2016-05-16 22:08:35 -07:00
* release deployment steps (eg: updating build-depends mirror, deploying testnet, etc...)
* proper Zcash-specific versions and names in software and documentation.