1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
## Making a release
- Update release notes in `NEWS`
- Update version number in `meson.build`
- Update version number in `configure.ac`
- Update version number in `data/io.github.cboxdoerfer.FSearch.appdata.xml.in`
- Update release notes in `data/io.github.cboxdoerfer.FSearch.appdata.xml.in`
- Update screenshots (if necessary) in `data/io.github.cboxdoerfer.FSearch.appdata.xml.in`
- Update version number in `copr/fsearch_release.spec`
- Update debian changelog: `dch --release`
- Build the project and make sure tests pass: `ninja -C $builddir test`
- Commit release: `git commit -a -m "Release FSearch $version"`
- Add tag: `git tag $version`
- Push changes and tag: `git push origin && git push origin $version`
- Create release on GitHub
### Major/Minor release
- Create a new branch: `git checkout -b "fsearch_$version" && git push -u origin fsearch_$version`
- Update `io.github.cboxdoerfer.FSearch.yml` in flathub repository
- Make sure flatpak
works: `flatpak-builder --force-clean --user --install builder-dir io.github.cboxdoerfer.FSearch.yml`
- Update `PKGBUILD` in *fsearch* AUR repository: `$EDITOR PKGBUILD && makepkg --printsrcinfo > .SRCINFO`
- Point Release PPA [recipe](https://code.launchpad.net/~christian-boxdoerfer/+recipe/fsearch-stable/+edit) to new
branch
- Point copr [recipe](https://copr.fedorainfracloud.org/coprs/cboxdoerfer/fsearch/package/fsearch/edit) to new branch
### Patch release
- Update `io.github.cboxdoerfer.FSearch.yml` in flathub repository
- Make sure flatpak
works: `flatpak-builder --force-clean --user --install builder-dir io.github.cboxdoerfer.FSearch.yml`
- Update `PKGBUILD` in *fsearch* AUR repository: `$EDITOR PKGBUILD && makepkg --printsrcinfo > .SRCINFO`
|