diff --git a/NEWS b/NEWS index 8f568ee..39af70b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +========================= +1.12.0 - October 18, 2021 +========================= + +- Added API to obtain the wl_resource for SHM exported buffers. +- Added unstable DMA-BUF pool API for buffer management. +- Fixed UI process getting stuck when navigating across different security + origins. +- Fixed invalid usage of Wayland client connections in the nested compositor + which caused crashes in some situations. +- Made it easier to override where Meson looks for wayland-scanner during + cross-compilation, using a native machine file. + ======================== 1.9.1 - February 3, 2021 ======================== diff --git a/include/wpe/wpebackend-fdo-version.h b/include/wpe/wpebackend-fdo-version.h index 4766bda..585e88a 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 9 -#define WPE_FDO_MICRO_VERSION 1 +#define WPE_FDO_MINOR_VERSION 12 +#define WPE_FDO_MICRO_VERSION 0 #endif /* !WPEBACKEND_FDO_VERSION_H */ diff --git a/meson.build b/meson.build index 346a1b6..13cf68d 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 = [8, 1, 7] +soversion = [9, 0, 8] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age