From 38ec1c0e733b7d135db5060c2061c2d3c09dc20b Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 15 Feb 2021 23:45:26 +0100 Subject: [PATCH] build: bump meson version to 0.56.0 Fixes this warning: WARNING: Project targeting '>=0.54.0' but tried to use feature introduced in '0.56.0': variables as dictionary. Fixes: 6f873078d4c0 ("build: use dictionnary for features instead of configuration_data") --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2bbed4ea..5d199c09 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', version: '0.12.0', license: 'MIT', - meson_version: '>=0.54.0', + meson_version: '>=0.56.0', default_options: [ 'c_std=c11', 'warning_level=2',