-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup versions & add release checklist
- Loading branch information
Showing
3 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Release Checklist | ||
|
||
- Decide on next version (following [CalVer](https://calver.org/)): | ||
- Regular release: `YY.MM`, e.g. `20.05` | ||
- Release candidate of regular release: `YY.MM-rcN`, e.g. `20.05-rc1` | ||
- Patch release: `YY.MM.P`, e.g. `20.05.1` | ||
- Release candidate of patch release: `YY.MM.P-rcN`, e.g. `20.05.1-rc1` | ||
- Ensure `CHANGELOG.md` is up-to-date including version numbers | ||
- If not, update and submit PR | ||
- Create release branch `releases/<VERSION>` from development branch | ||
- Update version in `VERSION` | ||
- Commit and push | ||
- Trigger the release CI pipeline (**TODO**) | ||
- Wait for successful completion of pipeline | ||
- `git tag <VERSION>` and `git push --tags` | ||
|
||
If the release was a regular release: | ||
- Switch to development branch | ||
- Update version in `VERSION` to `YY.MM-dev` with expected next version number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters