-
Notifications
You must be signed in to change notification settings - Fork 45
Release Checklist
Michal Fabik edited this page Sep 29, 2020
·
5 revisions
- Make sure there are no regressions (easy for me to say, what with there not being any proper tests)
- Whatever tests exist must be passing
- Pylint warnings may be ignored if they only pertain to code style
- Distribution package builds must not be failing
- Write release notes in
CHANGELOG.mdand stage it for commit (git add CHANGELOG.md) - Run
tito tag --use-version=x.y.z, where-
x = x + 1; y = 0; z = 0for major releases (significant changes/new features, backwards compatibility is essentially broken) -
y = y + 1; z = 0for minor releases (backwards-compatible changes/features) -
z = z + 1for bug-fix releases (no changes besides bug fixes)
-
- Run
git push <remote>andgit push <remote> <new-version> - Publish a new release for the tag in https://github.com/abrt/faf/releases/new
- Write a short overview in https://github.com/abrt/abrt.github.io/
Copr package builds and container image builds in Quay and Docker Hub should start automatically after pushing the tag.