These are the steps needed to create a new release:
- Create a new release in GitHub
- Click on
Releases -> Draft a new release
- Click on
- Make sure to name the release
v<VERSION>
(e.g. v1.2.3) - Click on
Generate release notes
- Click on
Publish release
- Update the current major version tag to point to the latest release. For example, if we just released v0.1.2, we'll need to make sure the
v0
tag points to the same commit asv0.1.2
# force update the latest release tag git tag -f v0 v0.1.2 # push the tag git push origin :refs/tags/v0