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 34 35 36 37 38 39 40 41 42 43 44
|
Tilix Release Notes
===================
1. Ensure `master` branch is up to date (`git pull`)
2. Manually write NEWS entries for Tilix in the same format as usual.
`git shortlog 1.9.5.. | grep -i -v trivial | grep -v Merge > NEWS.new`
```
Version 1.9.6
~~~~~~~~~~~~~~
Released: 2022-xx-xx
Notes:
Features:
Bugfixes:
Contributors:
```
3. Run `extract-strings.sh` script
4. Commit l10n changes to Git
5. Commit NEWS and other changes to Git, tag release:
```
git commit -a -m "Release version 1.9.6"
git tag -s -f -m "Release 1.9.6" 1.9.6 <gpg password>
git push --tags
git push
```
6. Make release for the new tag in GitHub
7. Do post-release version bump in `meson.build`, `source/gx/tilix/constants.d` and `RELEASE.md`
8. Commit trivial changes:
```
git commit -a -m "trivial: post release version bump"
git push
```
|