Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
appstream/RELEASE
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (36 sloc)
1.51 KB
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
| AppStream Release Notes | |
| 1. Set variables | |
| OLD_VERSION="0.16.1" | |
| NEW_VERSION="0.16.2" | |
| 2. Write NEWS entries for AppStream in the same format as usual. | |
| git shortlog v$OLD_VERSION.. | grep -i -v trivial | grep -v Merge > NEWS.new | |
| -------------------------------------------------------------------------------- | |
| Version 0.16.2 | |
| ~~~~~~~~~~~~~~ | |
| Released: 2023-xx-xx | |
| Notes: | |
| Features: | |
| Specification: | |
| Bugfixes: | |
| Miscellaneous: | |
| Contributors: | |
| -------------------------------------------------------------------------------- | |
| 3. Update library version if new ABI or API in meson.build | |
| 4. Commit changes in AppStream git: | |
| git commit -a -m "Release version $NEW_VERSION" | |
| git tag -s -f -m "Release $NEW_VERSION" v$NEW_VERSION <gpg password> | |
| git push --tags | |
| git push | |
| 5. run './release.sh --version=$NEW_VERSION --git-tag=v$NEW_VERSION --sign' | |
| 6. Upload tarball: scp -r *.tar.xz* annarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/appstream/releases/ | |
| 7. Upload documentation: | |
| scp -r build/release_install/usr/local/share/doc/appstream/html/* annarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/appstream/docs/ | |
| 8. Do post release version bump in meson.build, RELEASE | |
| 9. Commit trivial changes: | |
| git commit -a -m "trivial: post release version bump" | |
| git push | |
| 10. Send an email to appstream@lists.freedesktop.org | |
| ================================================= | |
| AppStream 0.16.2 released! | |
| Tarballs available here: https://www.freedesktop.org/software/appstream/releases/ | |
| ================================================= |