Skip to content

Commit f6362ce

Browse files
committed
Release version 1.7.1
1 parent 035a2d5 commit f6362ce

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_policy(VERSION 3.0)
44
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
55
include(VersioningUtils)
66

7-
SET_PROJECT_VERSION(1 7 0)
7+
SET_PROJECT_VERSION(1 7 1)
88
set(WPE_API_VERSION "1.0")
99

1010
# Before making a release, the LT_VERSION string should be modified.
@@ -14,7 +14,7 @@ set(WPE_API_VERSION "1.0")
1414
# - If binary compatibility has been broken (eg removed or changed interfaces)
1515
# change to C+1:0:0
1616
# - If the interface is the same as the previous version, change to C:R+1:A
17-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 5 0 4)
17+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 5 1 4)
1818

1919
project(libwpe VERSION "${PROJECT_VERSION}")
2020

NEWS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
=====================
2+
1.7.1 - July 29, 2020
3+
=====================
4+
5+
- New build configuration system based on Meson. The existing CMake-based
6+
system is still maintained, and both produce the same outputs.
7+
- Hidden visibility is now used by default for symbols, and only those
8+
belonging to the public API are exported.
9+
110
=====================
211
1.3.1 - June 17, 2019
312
=====================

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project('libwpe', 'cpp', 'c',
77
'cpp_std=c++11',
88
],
99
license: 'BSD-2-Clause',
10-
version: '1.7.0',
10+
version: '1.7.1',
1111
)
1212

1313
# This refers to the API level provided. This is modified only with major,
@@ -22,7 +22,7 @@ api_version = '1.0'
2222
# - If binary compatibility has been broken (eg removed or changed interfaces)
2323
# change to [C+1, 0, 0]
2424
# - If the interface is the same as the previous version, use [C, R+1, A].
25-
soversion = [5, 0, 4]
25+
soversion = [5, 1, 4]
2626

2727
# Split the *project* version into its components.
2828
version_info = meson.project_version().split('.')

0 commit comments

Comments
 (0)