Skip to content

Commit

Permalink
Release version 1.7.90
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Sep 4, 2020
1 parent f6362ce commit 506eeef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy(VERSION 3.0)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
include(VersioningUtils)

SET_PROJECT_VERSION(1 7 1)
SET_PROJECT_VERSION(1 7 90)
set(WPE_API_VERSION "1.0")

# Before making a release, the LT_VERSION string should be modified.
Expand All @@ -14,7 +14,7 @@ set(WPE_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(LIBWPE 5 1 4)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 5 2 4)

project(libwpe VERSION "${PROJECT_VERSION}")

Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
==========================
1.7.90 - September 4, 2020
==========================

- This release does not contain changes over the 1.7.1 development release

=====================
1.7.1 - July 29, 2020
=====================
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('libwpe', 'cpp', 'c',
'cpp_std=c++11',
],
license: 'BSD-2-Clause',
version: '1.7.1',
version: '1.7.90',
)

# 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 = [5, 1, 4]
soversion = [5, 2, 4]

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

0 comments on commit 506eeef

Please sign in to comment.