aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2022-06-24 19:48:11 +0300
committerMihai Fufezan <[email protected]>2022-06-24 19:48:11 +0300
commite95e01416e9431c7fbfb164746b194594062da9c (patch)
tree4887c06b6ea49774d5b714416eba3b062262edf4
parent94e8234ac92168ffb68a853e11220bff3364d5b5 (diff)
downloadHyprland-e95e01416e9431c7fbfb164746b194594062da9c.tar.gz
Hyprland-e95e01416e9431c7fbfb164746b194594062da9c.zip
flake, meson: manually update version
version update workflow: temporarily disable running on push
-rw-r--r--.github/workflows/nix-meson-ver-update.yaml2
-rw-r--r--flake.nix2
-rw-r--r--meson.build2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nix-meson-ver-update.yaml b/.github/workflows/nix-meson-ver-update.yaml
index 1bf95af9..ddeac945 100644
--- a/.github/workflows/nix-meson-ver-update.yaml
+++ b/.github/workflows/nix-meson-ver-update.yaml
@@ -1,6 +1,6 @@
name: "Nix & Meson: update version"
-on: [push, workflow_dispatch]
+on: [workflow_dispatch]
jobs:
update:
diff --git a/flake.nix b/flake.nix
index cd3e81f7..aff05d7f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -32,7 +32,7 @@
src = inputs.wlroots;
});
hyprland = prev.callPackage ./nix/default.nix {
- version = "" + "+date=" + (mkDate (self.lastModifiedDate or "19700101"));
+ version = "0.6.0beta" + "+date=" + (mkDate (self.lastModifiedDate or "19700101"));
wlroots = wlroots-hyprland;
};
};
diff --git a/meson.build b/meson.build
index 47bba6aa..7c075e4e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('Hyprland', 'cpp', 'c',
- version : '',
+ version : '0.6.0beta',
default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static'])
wlroots = subproject('wlroots', default_options: ['examples=false'])