From 3bac1e2eecd0c6d290c97d56f8bbfce9ac4e144e Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 13 Sep 2024 20:22:34 +0300 Subject: [PATCH] Release version 1.15.90 --- NEWS | 16 ++++++++++++++++ include/wpe/wpebackend-fdo-version.h | 4 ++-- meson.build | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 4438f83..2013746 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +============================ +1.15.90 - September 13, 2024 +============================ + +- Changed minimum Meson version to 0.52.1 +- Fix build issues in some configurations that require an explicit cast + to EGLNativeWindowType. +- Fix WebKit no longer repainting after provisional navigation with + PSON enabled. +- Fix graphics buffer leaks by always freeing them in buffer destroy + listener callbacks. +- Fix a crash caused by a wrong assertion, which was typically triggered + in debug builds when using the NVidia drivers. +- Fix memory leak when the view backend wl_resource is destroyed. +- Fix wpe_dmabuf_pool object leak. + ======================= 1.13.1 - August 9, 2022 ======================= diff --git a/include/wpe/wpebackend-fdo-version.h b/include/wpe/wpebackend-fdo-version.h index 6316ae1..976f603 100644 --- a/include/wpe/wpebackend-fdo-version.h +++ b/include/wpe/wpebackend-fdo-version.h @@ -27,7 +27,7 @@ #define WPEBACKEND_FDO_VERSION_H #define WPE_FDO_MAJOR_VERSION 1 -#define WPE_FDO_MINOR_VERSION 13 -#define WPE_FDO_MICRO_VERSION 1 +#define WPE_FDO_MINOR_VERSION 90 +#define WPE_FDO_MICRO_VERSION 0 #endif /* !WPEBACKEND_FDO_VERSION_H */ diff --git a/meson.build b/meson.build index 3aed82a..f89551a 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, 1, 9] +soversion = [11, 0, 10] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age