From 481f02ab0300f31443233bf8aff6245dcadd8def Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Wed, 3 Feb 2021 22:38:35 +0200 Subject: [PATCH] Release version 1.9.1 --- NEWS | 10 ++++++++++ meson.build | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 5e08ed6..8f568ee 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +======================== +1.9.1 - February 3, 2021 +======================== + +- Added API to query whether receiving rendered audio has been configured. +- The CMake build system has been removed in favor of Meson. +- Fixed memory leak on the second (and subsequent) use of + wpe_fdo_initialize_shm(). +- Fixed memory leak when releasing exportable view backends. + ===================== 1.7.1 - July 29, 2020 ===================== diff --git a/meson.build b/meson.build index 81b2832..186ee2d 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,7 @@ project('WPEBackend-fdo', ['c', 'cpp'], 'cpp_std=c++11', ], license: 'BSD-2-Clause', - version: '1.9.0', + version: '1.9.1', ) # This refers to the API level provided. This is modified only with major, @@ -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, 0, 7] +soversion = [8, 1, 7] # Split the *project* version into its components. version_info = meson.project_version().split('.')