diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-09 15:54:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-09 15:54:36 +0800 |
commit | aafcc3606cc20be1e7e8fe70494c63bb4f98d7fa (patch) | |
tree | e82709c611e2527bfff3a4294f673c9023ca540a | |
parent | 0b5c0d60bf6e00eadd0799b316279ed2dce6d56a (diff) | |
parent | 161515f4251e22252b34aa16be1e0ae428d304a3 (diff) | |
download | dexon-solidity-aafcc3606cc20be1e7e8fe70494c63bb4f98d7fa.tar.gz dexon-solidity-aafcc3606cc20be1e7e8fe70494c63bb4f98d7fa.tar.zst dexon-solidity-aafcc3606cc20be1e7e8fe70494c63bb4f98d7fa.zip |
Merge pull request #2536 from ethereum/releaseChecklist
Release checklist
-rw-r--r-- | ReleaseChecklist.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ReleaseChecklist.md b/ReleaseChecklist.md new file mode 100644 index 00000000..76e3bfb1 --- /dev/null +++ b/ReleaseChecklist.md @@ -0,0 +1,18 @@ +Checklist for making a release: + + - [ ] Check that all "nextrelease" issues and pull requests are merged to ``develop``. + - [ ] Create a commit in ``develop`` that updates the ``Changelog`` to include a release date (run the tests locally to update the bug list). + - [ ] Create a pull request and wait for the tests, merge it. + - [ ] Create a pull request from ``develop`` to ``release``, wait for the tests, then merge it. + - [ ] Make a final check that there are no platform-dependency issues in the ``solc-test-bytecode`` repository. + - [ ] Wait for the tests for the commit on ``release``, create a release in Github, creating the tag. + - [ ] Thank voluntary contributors in the Github release page (use ``git shortlog -s -n -e origin/release..origin/develop``). + - [ ] Wait for the CI runs on the tag itself (they should push artefacts onto the Github release page). + - [ ] Run ``scripts/release_ppa.sh release`` to create the PPA release (you need the relevant openssl key). + - [ ] Check that the Docker release was pushed to Docker Hub (this still seems to have problems). + - [ ] Make a release of ``solc-js``: Increment the version number, create a pull request for that, merge it after tests succeeded. + - [ ] Run ``npm publish`` in the updated ``solc-js`` repository. + - [ ] Create a commit to increase the version number on ``develop`` in ``CMakeLists.txt`` and add a new skeleton changelog entry. + - [ ] Merge ``release`` back into ``develop``. + - [ ] Announce on Twitter and Reddit. + - [ ] Lay back, wait for bug reports and repeat from step 1 :) |