- Please see the versioning policy.
- Stable branches will only get bugfixes and non-breaking enhancements.
- Everything is merged to
mainand from time to time suitable changes are backported to the stableflatpak-builder-1.EVEN_MINOR.xbranches. GitHub milestone can be used for tracking which PRs should be backported. - Stable tags are created from
flatpak-builder-1.EVEN_MINOR.xbranch. - Unstable tags are created from the
mainbranch. - The first release of a new stable release line eg.
1.6.0is tagged frommain. After that theflatpak-builder-1.6.xbranch is to be created and the1.6.1is made from that branch. During this timemainshould not receive breaking changes until the new stable branch is created.
- Update the
NEWS - Update version number in
meson.build. - Open a PR titled "Release $VERSION" with the above to see if CI passes.
- Merge the PR to the target branch.
- Check out the target branch, pull the above change locally and make sure the submodules are correct and checked out.
- Build with
meson, with all options enabled. - Create a tarball with
meson dist --include-subprojects -C builddir. The tarball is created from a clean checkout. It is produced asbuilddir/meson-dist/flatpak-builder-$VERSION.tar.xz. - Verify the project is buildable using the tarball. The tarball MUST contain the submodule files.
-
The tags are created in the
MAJOR.MINOR.PATCHformat eg.1.4.6(WITHOUT thev*prefix). -
Ideally the tags should be signed and annotated tags. Optionally git-evtag can be used.
-
The tag message should have the changelog and the checksum of the tarball that will be attached to GitHub releases.
-
Once the tag is pushed, a GitHub release from that tag is to be created.
The release tag is the new tag, the title is
VERSIONand the release body is the message from the tag. Additional notifications and details can be documented to the release body.Then the
flatpak-builder-$VERSION.tar.xztarball is to be attahced. This is the primary way downstreams consume Flatpak builder.
NOTE: GitHub releases are set as immutable, so please be careful.