From 562b24b9fc8e2c2e3de23dfaa32af5e3637c6da0 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 17 Dec 2021 12:51:54 +0100 Subject: [PATCH] build: bump soversion According to [1] this should be done at each release with breaking ABI changes. [1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/wikis/Core-contributor-guide#releasing-a-new-version Fixes: 7360810f2e5c ("build: bump to version 0.16.0") --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a12cd19b..24aa6f7a 100644 --- a/meson.build +++ b/meson.build @@ -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 = 10 +soversion = 11 little_endian = host_machine.endian() == 'little' big_endian = host_machine.endian() == 'big'