commit 6deb4ff40bb1681f879fdb86b291e50c7aeaae0b
parent e215557ba0f12659fb0fde559e0953f66ba2617d
Author: Michael Weiss <dev.primeos@gmail.com>
Date: Thu, 16 Jul 2020 13:31:13 +0200
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
@@ -1,7 +1,7 @@
project(
'sway',
'c',
- version: 'v1.5', #release_version
+ version: '1.5', #release_version
license: 'MIT',
meson_version: '>=0.53.0',
default_options: [