diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2020-07-16 13:31:13 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2020-07-16 13:31:13 +0200 |
| commit | c03be553fbc5781b991cb1398572cb75a8d812be (patch) | |
| tree | 744a22c755ec2fade2eab145e4ed526234852f23 | |
| parent | e8d92ddf92c76ae3d563ba3f016a6dcc9a913639 (diff) | |
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 2cf77a26, probably by accident.
| -rw-r--r-- | meson.build | 2 |
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 @@ project( 'sway', 'c', - version: 'v1.5', #release_version + version: '1.5', #release_version license: 'MIT', meson_version: '>=0.53.0', default_options: [ |
