From b6fb5678241cdefb56a2e9fa118bbcd109100127 Mon Sep 17 00:00:00 2001 From: Kate Hsuan Date: Fri, 9 Feb 2024 14:20:13 +0800 Subject: [PATCH] Revert "build: Bump the library soname after recent changes" This reverts commit a94c94fe6bc7c4e92d0ec34bc64d53de68fc4f32. Revert so verion bump up since the API has been reverted. Resolves: https://gitlab.freedesktop.org/upower/upower/-/issues/261 --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 6e398a2..f65b817 100644 --- a/meson.build +++ b/meson.build @@ -8,8 +8,8 @@ project('upower', 'c', ], meson_version: '>= 0.56.0') -soversion = 4 -current = 0 +soversion = 3 +current = 1 revision = 0 libversion = '@0@.@1@.@2@'.format(soversion, current, revision)