From b461dd32653ce64381eecd9554c9996840515da4 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Tue, 23 Aug 2022 01:29:44 +0300 Subject: [PATCH] Release version 1.13.90 --- CMakeLists.txt | 2 +- NEWS | 6 ++++++ include/wpe/libwpe-version.h | 2 +- meson.build | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9815299e..54276fa4 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 8 3 7) +calculate_library_versions_from_libtool_triple(LIBWPE 8 4 7) project(libwpe VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index 247a222d..3b47c25c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +========================= +1.13.90 - August 23, 2022 +========================= + +- Improved the gamepad API. + ======================== 1.13.3 - August 11, 2022 ======================== diff --git a/include/wpe/libwpe-version.h b/include/wpe/libwpe-version.h index 22a9b789..e81a3238 100644 --- a/include/wpe/libwpe-version.h +++ b/include/wpe/libwpe-version.h @@ -29,6 +29,6 @@ #define WPE_MAJOR_VERSION 1 #define WPE_MINOR_VERSION 13 -#define WPE_MICRO_VERSION 3 +#define WPE_MICRO_VERSION 90 #endif /* !LIBWPE_VERSION_H */ diff --git a/meson.build b/meson.build index 586c5570..52982f80 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 = [8, 3, 7] +soversion = [8, 4, 7] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age