2017-07-06 12:52:31 +00:00
Checklist for making a release:
2018-04-16 18:50:39 +00:00
- [ ] Ensure that a Github project exists for the release.
- [ ] Check that all issues and pull requests from the Github project to be released are merged to ``develop``.
- [ ] Create a commit in ``develop`` that updates the ``Changelog`` to include a release date (run ``./scripts/tests.sh`` to update the bug list). Sort the changelog entries alphabetically and correct any errors you notice.
2017-07-06 12:52:31 +00:00
- [ ] Create a pull request and wait for the tests, merge it.
2018-12-20 08:40:06 +00:00
- [ ] Thank voluntary contributors in the Github release page (use ``git shortlog -s -n -e origin/release..origin/develop``).
2017-07-06 12:52:31 +00:00
- [ ] Create a pull request from ``develop`` to ``release``, wait for the tests, then merge it.
2018-12-20 08:40:06 +00:00
- [ ] Make a final check that there are no platform-dependency issues in the ``solidity-test-bytecode`` repository.
2017-07-06 12:52:31 +00:00
- [ ] Wait for the tests for the commit on ``release``, create a release in Github, creating the tag.
2018-07-10 07:18:59 +00:00
- [ ] Wait for the CI runs on the tag itself (they should push artifacts onto the Github release page).
2018-12-20 08:40:06 +00:00
- [ ] Run ``scripts/create_source_tarball.sh`` while being on the tag to create the source tarball.
- [ ] Upload the source tarball (in the upload directory) to the release page.
2017-07-06 12:52:31 +00:00
- [ ] Run ``scripts/release_ppa.sh release`` to create the PPA release (you need the relevant openssl key).
2018-12-12 17:52:24 +00:00
- [ ] Once the ``~ethereum/ubuntu/ethereum-static`` PPA build is finished and published for all platforms (make sure not to do this earlier), copy the static package to the ``~ethereum/ubuntu/ethereum`` PPA for the destination series ``Trusty`` while selecting ``Copy existing binaries``.
2018-04-16 18:50:39 +00:00
- [ ] Check that the Docker release was pushed to Docker Hub (this still seems to have problems, run ``./scripts/docker_deploy_manual.sh release``).
2017-07-24 09:41:43 +00:00
- [ ] Update the homebrew realease in https://github.com/ethereum/homebrew-ethereum/blob/master/solidity.rb (version and hash)
2018-03-12 10:37:44 +00:00
- [ ] Update the default version on readthedocs.
2017-07-06 12:52:31 +00:00
- [ ] 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.
2017-07-24 09:41:43 +00:00
- [ ] Lean back, wait for bug reports and repeat from step 1 :)