From 7a362188c2e3f306c21d23f2d4e83f6c4ff9ecd4 Mon Sep 17 00:00:00 2001 From: Matthias Klumpp Date: Tue, 22 Feb 2022 17:33:19 +0100 Subject: [PATCH] trivial: post release version bump --- RELEASE.md | 12 +++++++----- meson.build | 2 +- source/gx/tilix/constants.d | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 6c1af4b75..73ed32d17 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -5,18 +5,20 @@ Tilix Release Notes 2. Manually write NEWS entries for Tilix in the same format as usual. -`git shortlog 1.9.4.. | grep -i -v trivial | grep -v Merge > NEWS.new` +`git shortlog 1.9.5.. | grep -i -v trivial | grep -v Merge > NEWS.new` ``` -Version 1.9.5 +Version 1.9.6 ~~~~~~~~~~~~~~ -Released: 2021-xx-xx +Released: 2022-xx-xx Notes: Features: Bugfixes: + +Contributors: ``` 3. Run `extract-strings.sh` script @@ -25,8 +27,8 @@ Bugfixes: 5. Commit NEWS and other changes to Git, tag release: ``` -git commit -a -m "Release version 1.9.5" -git tag -s -f -m "Release 1.9.5" 1.9.5 +git commit -a -m "Release version 1.9.6" +git tag -s -f -m "Release 1.9.6" 1.9.6 git push --tags git push ``` diff --git a/meson.build b/meson.build index 79981a962..fdf63f573 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'Tilix', 'd', - version: '1.9.5', + version: '1.9.6', license: 'MPL-2.0', meson_version: '>= 0.56' ) diff --git a/source/gx/tilix/constants.d b/source/gx/tilix/constants.d index 32d19eae1..62800f053 100644 --- a/source/gx/tilix/constants.d +++ b/source/gx/tilix/constants.d @@ -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.5"; +enum APPLICATION_VERSION = "1.9.6"; 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");