diff options
author | mbkma <[email protected]> | 2022-10-30 12:40:18 +0100 |
---|---|---|
committer | mbkma <[email protected]> | 2022-10-30 12:40:18 +0100 |
commit | 20143d94485b5d6f71824b75c326f4908f2a0715 (patch) | |
tree | 01e0f72b4e08f01b1060e0ec6a1a4792420ab143 | |
parent | 9f60058d4b7d1fc3197ce01ffef11aaba35b1699 (diff) | |
download | mate-calc-20143d94485b5d6f71824b75c326f4908f2a0715.tar.bz2 mate-calc-20143d94485b5d6f71824b75c326f4908f2a0715.tar.xz |
release 1.27.0v1.27.0
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,14 @@ +### mate-calc 1.27.0 + + * Translations update + * build warning: AC_OUTPUT should be used without arguments + * ci: drop -Wunused-parameter compiler cflag from debian build + * Use a blank line at most + * unit: fix memory leak + * cppcheck: function parameters can be declared with cons + * parserfunc: fix include guard + * Accessibility: use localized button names for screen readers + ### mate-calc 1.26.0 * Translations update diff --git a/configure.ac b/configure.ac index 0d893b5..1762a84 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.62) -AC_INIT([mate-calc], [1.26.0], [https://github.com/mate-desktop/mate-calc/issues], +AC_INIT([mate-calc], [1.27.0], [https://github.com/mate-desktop/mate-calc/issues], [mate-calc], [https://mate-desktop.org]) AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz check-news]) diff --git a/meson.build b/meson.build index 86fd5ce..c17c951 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('mate-calc','c', - version: '1.26.0', + version: '1.27.0', meson_version: '>=0.50.0', license: 'GPLv3+', ) |