From 1c10079a67cad71c890a3c4e09df4d5a890315a5 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 8 Apr 2021 08:51:12 +0200 Subject: [PATCH] build: bump version to 0.14.0 We now bump the version number right after releases, so that a Git snapshot is not mistaken for a previous version. References: https://github.com/swaywm/wlroots/issues/2792 --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 658a4120..67be2307 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'wlroots', 'c', - version: '0.13.0', + version: '0.14.0', license: 'MIT', meson_version: '>=0.56.0', default_options: [ @@ -15,7 +15,7 @@ project( # necessary for bugfix releases. Increasing soversion is required because # wlroots never guarantees ABI stability -- only API stability is guaranteed # between minor releases. -soversion = 8 +soversion = 9 add_project_arguments([ '-DWLR_USE_UNSTABLE',