diff options
author | raveit65 <[email protected]> | 2024-02-15 17:12:55 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2024-02-15 17:12:55 +0100 |
commit | 29e36d7cf10c2773991f34fbac1791139f225930 (patch) | |
tree | bd56c65a616c99136e8933e6bdd87f30aa815e31 | |
parent | 0d3ffad0a6566c9e826e414ed4963d8eb08a25b5 (diff) | |
download | mate-menus-29e36d7cf10c2773991f34fbac1791139f225930.tar.bz2 mate-menus-29e36d7cf10c2773991f34fbac1791139f225930.tar.xz |
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 12 insertions, 3 deletions
@@ -1,6 +1,15 @@ +### mate-menus 1.28.0 + + * Translations update + * matemenu-tree: Fix crash when adding launcher from compact menu + * add meson build system + * matemenu-tree: Fix build warning -Wsign-conversion + * fix test programs + * test-menu-spec: Fix build warning -Wmissing-field-initializers + ### mate-menus 1.27.0 - * tx: sync with transifex + * Translations update * configure.ac: The macro 'AC_HELP_STRING' is obsolete * tx: update resource * tx: migrate config file diff --git a/configure.ac b/configure.ac index 6f20f1d..619341c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ(2.62) -AC_INIT([mate-menus], [1.27.0], [https://mate-desktop.org]) +AC_INIT([mate-menus], [1.28.0], [https://mate-desktop.org]) AC_CONFIG_SRCDIR(libmenu/matemenu-tree.h) AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news]) diff --git a/meson.build b/meson.build index 0cbef89..3d92290 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'mate-menus', 'c', - version: '1.27.0', + version: '1.28.0', meson_version: '>=0.56.0', license: 'GPL2', default_options : [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11'], |