From 892182e9995ff18ce445c65dc34d997861d81e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 14 Oct 2021 18:37:45 +0200 Subject: [PATCH] Post-branch 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: --- meson.build | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index 796f8ad41..3b0ad4091 100644 --- a/meson.build +++ b/meson.build @@ -6,10 +6,8 @@ project('mutter', 'c', split_version = meson.project_version().split('.') -# Automatically increase API version each development cycle, -# starting with 0 in 3.23.x -api_version = split_version[0].to_int() - 32 -libmutter_api_version = '@0@'.format(api_version) +# API version, bump each development cycle +libmutter_api_version = '10' mutter_srcdir = meson.current_source_dir() mutter_builddir = meson.current_build_dir()