From 6deb4ff40bb1681f879fdb86b291e50c7aeaae0b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 16 Jul 2020 13:31:13 +0200 Subject: 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 0e4f4ccf..372c6db0 100644 --- 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: [ -- cgit v1.2.3-54-g00ecf