From e26d884d8990a197c309846206f77a33a3953cd0 Mon Sep 17 00:00:00 2001 From: Willem van den Akker Date: Fri, 3 May 2024 22:21:00 +0200 Subject: [PATCH] Prepare version 1.3 --- NEWS | 7 +++++++ meson.build | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 043cafc..8a36455 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +1.3 : Added BR translation and other updates. + Thanks to JuniorPolegato, cweickhmann. + Autoreconnect toggle. Thanks to danielkucera. + Fix missing includes. Thanks to fweimer-rh. + Remove control chars when saving. Thanks to blardyblar. + Many other fixes. + 1.2 : Searchbar added Load/save config from XDG_CONFIG_HOME diff --git a/meson.build b/meson.build index 1c25894..4f900bc 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'gtkterm', 'c', - version: '1.2.1', + version: '1.3.0', meson_version : '>= 0.46.0' ) @@ -19,7 +19,7 @@ localedir = join_paths(prefix, get_option('localedir')) conf = configuration_data() conf.set_quoted('VERSION', meson.project_version()) conf.set_quoted('PACKAGE', meson.project_name()) -conf.set_quoted('RELEASE_DATE', 'July 2022') +conf.set_quoted('RELEASE_DATE', 'May 2024') conf.set_quoted('LOCALEDIR', localedir) cc = meson.get_compiler('c')