diff --git a/CMakeLists.txt b/CMakeLists.txt index ac6d86da..c1bcc950 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 6 0 5) +calculate_library_versions_from_libtool_triple(LIBWPE 8 1 7) project(libwpe VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index 3846f37e..6523169c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +===================== +1.13.1 - May 12, 2022 +===================== + +- New API to provide input events to be treated by WebKit as gamepad inputs. +- New WPE_ENABLE_XKB build option, enabled by default, which can be used to + completely avoid usage of libxkbcommon. +- Allow libwpe to be built as a static library. The rest of the code + linked with the static library must provide the _wpe_loader_interface + symbol, as dlopen() will not be used. +- Allow building libwpe within a larger CMake project. +- Update the required Meson version to 0.55.0 + ======================= 1.11.1 - August 4, 2021 ======================= diff --git a/include/wpe/libwpe-version.h b/include/wpe/libwpe-version.h index 628790dd..aacc8477 100644 --- a/include/wpe/libwpe-version.h +++ b/include/wpe/libwpe-version.h @@ -10,6 +10,6 @@ #define WPE_MAJOR_VERSION 1 #define WPE_MINOR_VERSION 13 -#define WPE_MICRO_VERSION 0 +#define WPE_MICRO_VERSION 1 #endif /* !LIBWPE_VERSION_H */ diff --git a/meson.build b/meson.build index c87c04a2..490949ea 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, 0, 7] +soversion = [8, 1, 7] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age