diff options
author | mbkma <[email protected]> | 2022-11-03 21:35:00 +0100 |
---|---|---|
committer | mbkma <[email protected]> | 2022-11-03 21:35:00 +0100 |
commit | 093a9ef4fb01e64a77f507bf4673ec9309ffbda3 (patch) | |
tree | 71772cd75acefc915e5a921d027212dd3ae6220c | |
parent | 899e4df06aac8d9a08b2d438715f38371036cb6d (diff) | |
download | mate-terminal-1.27.0.tar.bz2 mate-terminal-1.27.0.tar.xz |
release version 1.27.0v1.27.0
-rw-r--r-- | NEWS | 18 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 20 insertions, 2 deletions
@@ -1,3 +1,21 @@ +### mate-terminal 1.27.0 + + * tx: sync with transifex + * tx: update resource + * tx: migrate config file + * configure.ac: The macro 'AC_HELP_STRING' is obsolete + * terminal-window: Vble is assigned a value that is never used + * terminal: fix build warning about missing field initializer + * Remove time.h + * terminal-util: Remove build warning -Wbad-function-cast + * terminal-window: gtk+ 2.17.1 fixed gtk bug 535557 + * terminal-profile: fix initialization for default colors + * Fix implicit conversion changes signedness: 'gboolean' to 'guint' + * meson build: drop desktop-file/appdata-file argument + * ci: drop -Wunused-parameter compiler cflag from debian build + * Use a blank line at most + * Title dialog: just hit Return to validate + ### mate-terminal 1.26.0 * Translations update diff --git a/configure.ac b/configure.ac index 55a85c1..ac48821 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define(mt_major_version, 1) -m4_define(mt_minor_version, 26) +m4_define(mt_minor_version, 27) m4_define(mt_micro_version, 0) m4_define(mt_version, mt_major_version.mt_minor_version.mt_micro_version) diff --git a/meson.build b/meson.build index a71dc01..2314ba8 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'mate-terminal', 'c', - version: '1.26.0', + version: '1.27.0', meson_version: '>=0.47.0', license: 'GPL2', default_options : [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11'], |