Skip to content

Commit

Permalink
Release version 1.13.90
Browse files Browse the repository at this point in the history
aperezdc committed Aug 22, 2022
1 parent 73080fd commit b461dd3
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -15,7 +15,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 8 3 7)
calculate_library_versions_from_libtool_triple(LIBWPE 8 4 7)

project(libwpe VERSION "${PROJECT_VERSION}")

6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
=========================
1.13.90 - August 23, 2022
=========================

- Improved the gamepad API.

========================
1.13.3 - August 11, 2022
========================
2 changes: 1 addition & 1 deletion include/wpe/libwpe-version.h
Original file line number Diff line number Diff line change
@@ -29,6 +29,6 @@

#define WPE_MAJOR_VERSION 1
#define WPE_MINOR_VERSION 13
#define WPE_MICRO_VERSION 3
#define WPE_MICRO_VERSION 90

#endif /* !LIBWPE_VERSION_H */
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -21,7 +21,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 = [8, 3, 7]
soversion = [8, 4, 7]

# Mangle [C, R, A] into an actual usable *soversion*.
soversion_major = soversion[0] - soversion[2] # Current-Age

0 comments on commit b461dd3

Please sign in to comment.