Skip to content

Commit

Permalink
Release version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Jul 28, 2020
1 parent 343146b commit 6796611
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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}")

Expand Down
13 changes: 13 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
=====================
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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('.')
Expand Down

0 comments on commit 6796611

Please sign in to comment.