This is an old revision of the document!
HOWTO: Individual Releases
Bugfix Releases
Let's assume that Olivier wants to do a bugfix release of xfwm4 and that the previous release has been xfwm4 4.6.0.
If the 4.6.0 release was done correctly, there should be an xfce-4.6 branch in the xfwm4 repository.
These are the steps Olivier needs to go through for a proper release of xfwm4 4.6.1:
Preparations
- Check out the stable branch with
git checkout -b xfce-4.6 remotes/origin/xfce-4.6
- Make sure the application compiles and that
./autogen.sh --enable-gtk-doc ... && make distcheck
works; commit build fixes as needed
- Update the NEWS file
- Update the ChangeLog from git with
git log > ChangeLog
Bumping the Version and Generating the Release Tarball
- Update the major, minor and micro version to
4,6and1in the configure template (e.g.configure.in.in) - If the component is or contains a library and there were new symbols added since the last release, update the libtool version in the configure template
- Remove the
gitfromxfwm4_version_tag()in the configure script template - Rebuild the translation files (
po(-doc)?/*.pot?) to update Project-Id-Version and prevent problems during make distcheck - Run
./autogen.sh -enable-gtk-doc ... && make distcheck
again to make sure everything builds fine; fix problems locally without committing
We should now have a release tarball called xfwm4-4.6.1.tar.bz2.
Committing and Tagging the Release
- Commit all local changes with a commit subject like this:
Release 4.6.1!
- After the commit, create an annotated tag for the release with
git tag -a xfwm4-4.6.1
- Push the release commit and the tag with
git push && git push --tags
You can sign tags with a GPG key by adding an additional parameter to the git tag command. For more information about tagging read the git-tag manual.
Uploading the Release Tarball and Sending Announcements
- Compute the SHA1 checksum of the
xfwm4-4.6.1.tar.bz2tarball generated by the last run ofmake distcheckwithsha1sum xfwm4-4.6.1.tar.bz2
- Open https://releases.xfce.org/ in your browser, log in with your Xfce HTTPS credentials
- Click on
Release New Versionlink next to your project (xfwm4in this case) - Follow the instructions presented to you by the release manager software to upload the
xfwm4-4.6.1.tar.bz2tarball with the SHA1 checksum you computed before- For the announcements, please only pick mailing lists that make sense. Everything should be announced on
announce@xfce.organdxfce@xfce.org. Software affecting developers should be announced onxfce4-dev@xfce.orgin addition, and so on.
After the Release
- Add the
gitback toxfwm4_version_tag()in the configure template; commit the change - Don't forget to add the version to your project on http://bugzilla.xfce.org/
- You might want to update the following websites:
- Freshmeat
- Gnomefiles
- others
- Celebrate