From 5523f39d46d398608544a501c39b6f1c3d41233f Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 11 Sep 2020 16:29:16 +0300 Subject: [PATCH] Release version 1.8.0 --- CMakeLists.txt | 4 ++-- NEWS | 6 ++++++ meson.build | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b63d8c7..75f88ab 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 90) +SET_PROJECT_VERSION(1 8 0) 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 2 6) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPEBACKEND_FDO 7 3 6) project(wpebackend-fdo VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index 2df23b9..a6309c9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +========================== +1.8.0 - September 11, 2020 +========================== + +- This release does not contain changes over the 1.7.90 development release + ========================== 1.7.90 - September 4, 2020 ========================== diff --git a/meson.build b/meson.build index 142b9c7..46ef6b0 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.90', + version: '1.8.0', ) # 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, 2, 6] +soversion = [7, 3, 6] # Split the *project* version into its components. version_info = meson.project_version().split('.')