From 2db8d72439e7ddd754800f9653f151bc995a31c7 Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Wed, 27 Aug 2025 09:25:58 -0600 Subject: [PATCH 1/2] build: Require wayfire 0.10.0 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e534d5a..f3820ab 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project('wcm', 'c', 'cpp', version : '0.9.0', default_options : 'cpp_std=c++17') add_global_arguments('-DWAYFIRE_CONFIG_FILE="' + get_option('wayfire_config_file_path') + '"', language : 'cpp') add_global_arguments('-DWF_SHELL_CONFIG_FILE="' + get_option('wf_shell_config_file_path') + '"', language : 'cpp') -wayfire = dependency('wayfire', version: '>=0.9.0') +wayfire = dependency('wayfire', version: '>=0.10.0') wf_shell = dependency('wf-shell', required : get_option('wf_shell')) wayfire_metadata_dir = wayfire.get_variable(pkgconfig: 'metadatadir') From dfb017fbcfb804c15b90ad7f1366aba5799df2ee Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Wed, 27 Aug 2025 09:26:23 -0600 Subject: [PATCH 2/2] build: Bump project version to 0.10.0 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f3820ab..5d46931 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('wcm', 'c', 'cpp', version : '0.9.0', default_options : 'cpp_std=c++17') +project('wcm', 'c', 'cpp', version : '0.10.0', default_options : 'cpp_std=c++17') add_global_arguments('-DWAYFIRE_CONFIG_FILE="' + get_option('wayfire_config_file_path') + '"', language : 'cpp') add_global_arguments('-DWF_SHELL_CONFIG_FILE="' + get_option('wf_shell_config_file_path') + '"', language : 'cpp')