Start by making a release issue using the template below. The issue checklist can be followed to release a new version of the Helm chart and help everybody coordinate. Do some copy pasting!
This issue will be used to coordinate the next release of the Helm chart according to the instructions in RELEASE.md. Below is the checklist for this release.
-
Update CHANGELOG.md and make a commit
- List merged PRs using choldgraf/github-activity.
- List breaking changes and refer to the upgrade
instructions.
- Update these upgrade instructions.
- List features with brief descriptions.
-
Pre-release
-
Create and push a git tag
git checkout master git reset --hard <upstream>/master git tag -a x.y.z-beta.1 -m x.y.z-beta.1 <commit on master> git push --follow-tags <upstream> master
-
-
Update documentation
- Update old version references to the new version
-
Communicate
- Write a discourse post
-
Verify
- Verify one set of instructions to deploy on z2jh.jupyter.org.
-
Update CHANGELOG.md and make a commit
-
Generate and add a list of contributors
# install dependencies for the script pip install pygithub requests-cache tqdm # NOTE: You may need to wait a long time for this to finish. You may even # get errors because you used too much of your API quota. If that # happens, you can re-run it again later and rely on the caching to # ensure you make progress. You have 5000 requests per hour. # get a GITHUB_API_TOKEN for use with the script GITHUB_API_TOKEN="your-token" tools/contributors.py
-
-
Release
-
Create and push a git tag.
git checkout master git reset --hard <upstream>/master git tag -a x.y.z-beta.1 -m x.y.z-beta.1 HEAD git push --follow-tags <upstream> master
-
Create a GitHub release
Visit the release page and create a new release referencing the recent tag. Add a brief text like the one below.
# TODO: Figure out how to... - Warn about eventual breaking changes. - Reference upgrade instructions and the changelog. - NOTE: Also make the upgrade instructions contain a reference on what to do if they fail.
-
-
Communicate
- Write a discourse post
- Write a blog post
- Tweet about it