From 5cbf11db9228afc88f4d6357538b6de15d31ce23 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Tue, 25 Apr 2023 11:55:13 -0700 Subject: [PATCH] build: bump soname to 6 We are doing a lot of upcoming changes, so just synchronize everything to our next soname bump. --- meson.build | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 7a8edf33..77a0189e 100644 --- a/meson.build +++ b/meson.build @@ -20,8 +20,13 @@ else app_id = 'org.gnome.Sysprof' endif -libsysprof_api_version = 4 -libsysprof_ui_api_version = 5 +# All libraries share an ABI revision as they are expected +# to be updated as a set. +soname_major_version = 6 + +# Temporary until we update meson.build +libsysprof_api_version = soname_major_version +libsysprof_ui_api_version = soname_major_version version_split = meson.project_version().split('.') datadir = get_option('datadir')