File: RELEASE.md

package info (click to toggle)
tilix 1.9.6-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,444 kB
  • sloc: xml: 1,175; sh: 285; python: 127; perl: 72; ansic: 53; makefile: 6
file content (44 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (3)
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
```