aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar Michael Weiss <dev.primeos@gmail.com>2020-07-16 13:31:13 +0200
committerLibravatar Drew DeVault <sir@cmpwn.com>2020-07-17 05:44:24 -0600
commit6deb4ff40bb1681f879fdb86b291e50c7aeaae0b (patch)
tree744a22c755ec2fade2eab145e4ed526234852f23 /meson.build
parentBump version to 1.5 (diff)
downloadsway-6deb4ff40bb1681f879fdb86b291e50c7aeaae0b.tar.gz
sway-6deb4ff40bb1681f879fdb86b291e50c7aeaae0b.tar.zst
sway-6deb4ff40bb1681f879fdb86b291e50c7aeaae0b.zip
meson.build: Fix the version format
The current version is prefixed by a "v" and therefore breaks the output of "swaymsg -rt get_version" which is implemented trough "sscanf(SWAY_VERSION, "%u.%u.%u", &major, &minor, &patch)". The prefixed "v" was added in 8b2ff2f1, probably by accident.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 0e4f4ccf..372c6db0 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
1project( 1project(
2 'sway', 2 'sway',
3 'c', 3 'c',
4 version: 'v1.5', #release_version 4 version: '1.5', #release_version
5 license: 'MIT', 5 license: 'MIT',
6 meson_version: '>=0.53.0', 6 meson_version: '>=0.53.0',
7 default_options: [ 7 default_options: [