From 67f95eac6300cb934aa52b1891a50c46d977967e Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 16 Jul 2023 13:02:11 +0300 Subject: [PATCH] build: bump version to 1.11.10 --- meson.build | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 7694025e..7c897deb 100644 --- a/meson.build +++ b/meson.build @@ -17,7 +17,7 @@ ################################################################################ # project setup project('mu', ['c', 'cpp'], - version: '1.11.9', + version: '1.11.10', meson_version: '>= 0.56.0', license: 'GPL-3.0-or-later', default_options : [ @@ -56,7 +56,11 @@ extra_flags = [ '-Wno-switch-enum', '-Wno-keyword-macro', '-Wno-volatile', - '-Wno-#warnings'] + '-Wno-#warnings', + # assuming these are false alarm... (in fmt, with gcc13): + '-Wno-array-bounds', + '-Wno-stringop-overflow', +] if get_option('buildtype') == 'debug' extra_flags += [