From 86663687517568b8de00b630381466bf50a8f700 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Thu, 25 Jan 2024 11:41:37 +0200 Subject: [PATCH] Release version 1.14.2 --- CMakeLists.txt | 2 +- NEWS | 7 +++++++ include/wpe/libwpe-version.h | 2 +- meson.build | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c00d3920..bf2356fd 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 9 1 8) +calculate_library_versions_from_libtool_triple(LIBWPE 9 2 8) project(libwpe VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index e22a568f..0937f1ea 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +========================= +1.14.2 - January 25, 2024 +========================= + +- Allow resetting the fullscreen client to a null pointer. +- Fix usage of the _wpe_loader_interface with the static loader. + ========================= 1.14.1 - February 2, 2023 ========================= diff --git a/include/wpe/libwpe-version.h b/include/wpe/libwpe-version.h index 06cede2c..a120662b 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 14 -#define WPE_MICRO_VERSION 1 +#define WPE_MICRO_VERSION 2 #endif /* !LIBWPE_VERSION_H */ diff --git a/meson.build b/meson.build index 07608835..82457f98 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 = [9, 1, 8] +soversion = [9, 2, 8] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age