From 8125e08b12f5895d617e55163767a648ffaf124c Mon Sep 17 00:00:00 2001 From: William McKinnon Date: Tue, 24 Jun 2025 01:33:30 -0400 Subject: [PATCH] ver: update to 0.5.2 --- flake.nix | 2 +- meson.build | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d69c51f3..8584449f 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ # unless you intend to override function arguments later. }).overrideAttrs (old: { - version = "0.4.0-git"; + version = "0.5.2-git"; src = pkgs.lib.cleanSource ./.; nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.cmake ]; # Add wlroots_0_19 here diff --git a/meson.build b/meson.build index 6c170d33..e356f3ee 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'sway', 'c', - version: '0.5.1', + version: '0.5.2', license: 'MIT', meson_version: '>=1.3', default_options: [ @@ -44,7 +44,7 @@ subproject( 'scenefx', required: false, ) -scenefx = dependency('scenefx-0.3', fallback: 'scenefx') +scenefx = dependency('scenefx-0.4', fallback: 'scenefx') # Execute the wlroots subproject, if any wlroots_version = ['>=0.19.0', '<0.20.0']