From 7a69c1e3c0fe0cd0134db6d8fe581d9d831f648e Mon Sep 17 00:00:00 2001 From: Ilia Bozhinov Date: Wed, 23 Jun 2021 15:07:44 +0200 Subject: [PATCH] meson: bump version and required wlroots version --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index cefd265b6..75c4c2adf 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'wayfire', 'c', 'cpp', - version: '0.7.1', + version: '0.7.2', license: 'MIT', meson_version: '>=0.53.0', default_options: [ @@ -28,7 +28,7 @@ libinput = dependency('libinput', version: '>=1.7.0') pixman = dependency('pixman-1') threads = dependency('threads') xkbcommon = dependency('xkbcommon') -wlroots = dependency('wlroots', version: ['>=0.13.0', '<0.14.0'], required: get_option('use_system_wlroots')) +wlroots = dependency('wlroots', version: ['>=0.14.0', '<0.15.0'], required: get_option('use_system_wlroots')) wfconfig = dependency('wf-config', version: ['>=0.7.0', '<0.8.0'], required: get_option('use_system_wfconfig')) use_system_wlroots = not get_option('use_system_wlroots').disabled() and wlroots.found()