Skip to content

Commit 6483872

Browse files
committed
Release version 1.8.0
1 parent 506eeef commit 6483872

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-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 90)
7+
SET_PROJECT_VERSION(1 8 0)
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 2 4)
17+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 5 3 4)
1818

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

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
==========================
2+
1.8.0 - September 11, 2020
3+
==========================
4+
5+
- This release does not contain changes over the 1.7.90 development release
6+
17
==========================
28
1.7.90 - September 4, 2020
39
==========================

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.90',
10+
version: '1.8.0',
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, 2, 4]
25+
soversion = [5, 3, 4]
2626

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

0 commit comments

Comments
 (0)