Post-branch mutter API bump

Since the CI pipeline now runs `meson dist` which includes a test
for an up-to-date NEWS entry, post-branch/release version bumps
have become unwieldy.

It's still useful to increase the API version right after branching
though, so return to bumping it manually and do so now.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2005>
This commit is contained in:
Florian Müllner 2021-10-14 18:53:17 +02:00
parent 2dcbf5f33b
commit 7bde02c1cf

View File

@ -8,10 +8,9 @@ split_version = meson.project_version().split('.')
# We depend on a specific version of the libmutter API. The mutter variants of
# the Cogl and Clutter libraries also use this API version.
# The API version is increased automatically each development cycle,
# The API version is increased each development cycle,
# starting with 0 in 3.23.x
api_version = split_version[0].to_int() - 32
mutter_api_version = '@0@'.format(api_version)
mutter_api_version = '10'
clutter_pc = 'mutter-clutter-' + mutter_api_version
cogl_pc = 'mutter-cogl-' + mutter_api_version