From d32ddb9b20b664b4706c7eb132f725b8ffdc5eec Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 13 Sep 2024 23:33:05 +0300 Subject: [PATCH] Unreviewed. Post-release version bump. --- CMakeLists.txt | 2 +- include/wpe/libwpe-version.h | 4 ++-- meson.build | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e78656a..db9ae50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(WPE_API_VERSION "1.0") # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -calculate_library_versions_from_libtool_triple(LIBWPE 10 2 9) +calculate_library_versions_from_libtool_triple(LIBWPE 11 0 10) project(libwpe VERSION "${PROJECT_VERSION}") diff --git a/include/wpe/libwpe-version.h b/include/wpe/libwpe-version.h index 7169e5a..29bb078 100644 --- a/include/wpe/libwpe-version.h +++ b/include/wpe/libwpe-version.h @@ -28,7 +28,7 @@ #define LIBWPE_VERSION_H #define WPE_MAJOR_VERSION 1 -#define WPE_MINOR_VERSION 15 -#define WPE_MICRO_VERSION 2 +#define WPE_MINOR_VERSION 17 +#define WPE_MICRO_VERSION 0 #endif /* !LIBWPE_VERSION_H */ diff --git a/meson.build b/meson.build index dbf57b9..917e856 100644 --- a/meson.build +++ b/meson.build @@ -21,7 +21,7 @@ api_version = '1.0' # - If binary compatibility has been broken (eg removed or changed interfaces) # change to [C+1, 0, 0] # - If the interface is the same as the previous version, use [C, R+1, A]. -soversion = [10, 2, 9] +soversion = [11, 0, 10] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age