Skip to content

Commit

Permalink
trivial: post release version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ximion committed Feb 10, 2021
1 parent e51cabf commit b0b1817
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ Tilix Release Notes

2. Manually write NEWS entries for Tilix in the same format as usual.

`git shortlog 1.9.3.. | grep -i -v trivial | grep -v Merge > NEWS.new`
`git shortlog 1.9.4.. | grep -i -v trivial | grep -v Merge > NEWS.new`

```
Version 1.9.4
Version 1.9.5
~~~~~~~~~~~~~~
Released: 2021-xx-xx
Expand All @@ -25,8 +25,8 @@ Bugfixes:

5. Commit NEWS and other changes to Git, tag release:
```
git commit -a -m "Release version 1.9.4"
git tag -s -f -m "Release 1.9.4" 1.9.4 <gpg password>
git commit -a -m "Release version 1.9.5"
git tag -s -f -m "Release 1.9.5" 1.9.5 <gpg password>
git push --tags
git push
```
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'Tilix', 'd',
version: '1.9.4',
version: '1.9.5',
license: 'MPL-2.0',
meson_version: '>= 0.52'
)
Expand Down
2 changes: 1 addition & 1 deletion source/gx/tilix/constants.d
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ enum APPLICATION_ID = "com.gexperts.Tilix";

// Application values used in About Dialog
enum APPLICATION_NAME = "Tilix";
enum APPLICATION_VERSION = "1.9.4";
enum APPLICATION_VERSION = "1.9.5";
enum APPLICATION_AUTHOR = "Gerald Nunn";
enum APPLICATION_COPYRIGHT = "Copyright \xc2\xa9 2020 " ~ APPLICATION_AUTHOR;
enum APPLICATION_COMMENTS = N_("A VTE based terminal emulator for Linux");
Expand Down

0 comments on commit b0b1817

Please sign in to comment.