From 6796611f4a0c5b11ebc58466d73880ef2781e4ef Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Wed, 29 Jul 2020 01:46:06 +0300 Subject: [PATCH] Release version 1.7.1 --- CMakeLists.txt | 4 ++-- NEWS | 13 +++++++++++++ meson.build | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ced0a90..05d889d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.3) set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") include(VersioningUtils) -SET_PROJECT_VERSION(1 7 0) +SET_PROJECT_VERSION(1 7 1) set(WPEBACKEND_FDO_API_VERSION 1.0) # Before making a release, the LT_VERSION string should be modified. @@ -13,7 +13,7 @@ set(WPEBACKEND_FDO_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, change to C:R+1:A -CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPEBACKEND_FDO 7 0 6) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPEBACKEND_FDO 7 1 6) project(wpebackend-fdo VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index e87f740..5e08ed6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +===================== +1.7.1 - July 29, 2020 +===================== + +- Added new API for the audio rendering protocol, which allows embedders to + receive audio samples instead of letting WPE WebKit handle their playback. +- Added support to export frames using EGLStreams, which can be used e.g. + with Nvidia GPUs. +- New build configuration system based on Meson. The existing CMake-based + system is still maintained, and both produce the same outputs. +- Expose symbols for the version retrieval functions. +- Use libepoxy for EGL operations. + ===================== 1.3.1 - June 13, 2019 ===================== diff --git a/meson.build b/meson.build index 4861569..4d6e2d8 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.7.0', + version: '1.7.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 = [7, 0, 6] +soversion = [7, 1, 6] # Split the *project* version into its components. version_info = meson.project_version().split('.')