diff options
author | Simon Ser <contact@emersion.fr> | 2021-12-17 12:51:54 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-12-17 12:53:18 +0100 |
commit | 562b24b9fc8e2c2e3de23dfaa32af5e3637c6da0 (patch) | |
tree | 7aa76f7f456ef02b175105823a3eab7af0845b25 | |
parent | 92d137c78ac05b565bfa06b5659aea52992e0dd7 (diff) |
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")
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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' |