From 04ccf2ef1753e72345770fb0a60bf38c5a100de8 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 13 Sep 2024 23:06:04 +0300 Subject: [PATCH] Release version 1.14.3 --- NEWS | 9 +++++++++ include/wpe/wpebackend-fdo-version.h | 2 +- meson.build | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index c3b0d7f..a8734be 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +=========================== +1.14.3 - September 13, 2024 +=========================== + +- Fix build issues in some configurations that require en explicit cast + to EGLNativeWindowType. +- Fix memory leak when the view backend wl_resource is destroyed. +- Fix wpe_dmabuf_pool object leak. + ======================= 1.14.2 - March 22, 2023 ======================= diff --git a/include/wpe/wpebackend-fdo-version.h b/include/wpe/wpebackend-fdo-version.h index 9ec985e..464fb1a 100644 --- a/include/wpe/wpebackend-fdo-version.h +++ b/include/wpe/wpebackend-fdo-version.h @@ -28,6 +28,6 @@ #define WPE_FDO_MAJOR_VERSION 1 #define WPE_FDO_MINOR_VERSION 14 -#define WPE_FDO_MICRO_VERSION 2 +#define WPE_FDO_MICRO_VERSION 3 #endif /* !WPEBACKEND_FDO_VERSION_H */ diff --git a/meson.build b/meson.build index 8531a9b..e067777 100644 --- a/meson.build +++ b/meson.build @@ -23,7 +23,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, 4, 9] +soversion = [10, 5, 9] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age