diff options
author | raveit65 <[email protected]> | 2023-07-15 14:54:13 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-07-15 14:54:13 +0200 |
commit | 5d976574dc0486a1527f94565faaf68d694309e8 (patch) | |
tree | 72c3cb347f01f2a9716563fe4e34efa1c7e138dc | |
parent | 37bfbf48a5fe53e990c51d92f546203a7fae767a (diff) | |
download | libmatekbd-1.27.1.tar.bz2 libmatekbd-1.27.1.tar.xz |
release 1.7.1v1.27.1
-rw-r--r-- | NEWS | 20 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 19 insertions, 5 deletions
@@ -1,3 +1,17 @@ +### libmatekbd 1.27.1 + + * tx: sync with transifex + * Fix pkg-config --libs libmatekbdui errors + * https://github.com/mate-desktop/mate-control-center/issues/707 + * Add meson compilation support + * Use correct version information for dynamic libraries + * matekbd-keyboard-drawing: fix memory leak + * matekbd-keyboard-drawing-test: -Wmissing-field-initializers + * matekbd-keyboard-drawing: fix memory leak + * Use GLib's new g_clear_signal_handler() function to simplify code + * Signal handler IDs are gulong, not int + * build warning: AC_OUTPUT should be used without arguments + ### libmatekbd 1.27.0 * tx: sync with transifex @@ -10,9 +24,9 @@ ### libmatekbd 1.26.0 * tx: sync with transifex - build: show package name and version in configure summary - build: set GETTEXT_PACKAGE=AC_PACKAGE_NAME - Remove USE_MATE2_MACROS from autogen.sh (legacy) + * build: show package name and version in configure summary + * build: set GETTEXT_PACKAGE=AC_PACKAGE_NAME + * Remove USE_MATE2_MACROS from autogen.sh (legacy) ### libmatekbd 1.25.0 diff --git a/configure.ac b/configure.ac index 2e7a6e9..58297cf 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl *** configure.in for libmatekbd *** dnl *************************************************************************** m4_define([libmatekbd_major_version], [1]) m4_define([libmatekbd_minor_version], [27]) -m4_define([libmatekbd_micro_version], [0]) +m4_define([libmatekbd_micro_version], [1]) m4_define([libmatekbd_version],[libmatekbd_major_version.libmatekbd_minor_version.libmatekbd_micro_version]) AC_INIT([libmatekbd], [libmatekbd_version], [https://github.com/mate-desktop/libmatekbd]) diff --git a/meson.build b/meson.build index 95aec76..c1a57e1 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libmatekbd', 'c', - version: '1.27.0', + version: '1.27.1', default_options: [ 'buildtype=debugoptimized', 'warning_level=1', |