From f765a37d94c8cf50d7116ee4d2f9f814848750b9 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Thu, 1 Apr 2021 01:58:18 +0300 Subject: [PATCH] Release version 1.9.90 --- NEWS | 14 ++++++++++++++ include/wpe/wpebackend-fdo-version.h | 2 +- meson.build | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 8f568ee..24b0ddd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +====================== +1.9.90 - April 1, 2021 +====================== + +- Added API to obtain the wl_resource for SHM exported buffers. +- Fixed headers to include from the top-level API headers, as + their consumers expect the public libwpe API to be defined as well. +- Fixed UI process getting stuck when navigating across different security + origins. This also fixed a small memory leak. +- Fixed invalid usage of Wayland client connections in the nested compositor + which caused sporadic crashes in certain conditions. +- Fixed a file descriptor leak on view backend initialization. +- Fixed a small memory leak when releasing exportable view backends. + ======================== 1.9.1 - February 3, 2021 ======================== diff --git a/include/wpe/wpebackend-fdo-version.h b/include/wpe/wpebackend-fdo-version.h index 4766bda..92ad2a8 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 9 -#define WPE_FDO_MICRO_VERSION 1 +#define WPE_FDO_MICRO_VERSION 90 #endif /* !WPEBACKEND_FDO_VERSION_H */ diff --git a/meson.build b/meson.build index f63fcd7..8334066 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,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, 1, 7] +soversion = [9, 0, 8] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age