Skip to content

Commit 10e0fec

Browse files
committed
Release version 1.13.1
1 parent dad8942 commit 10e0fec

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set(WPE_API_VERSION "1.0")
1515
# - If binary compatibility has been broken (eg removed or changed interfaces)
1616
# change to C+1:0:0
1717
# - If the interface is the same as the previous version, change to C:R+1:A
18-
calculate_library_versions_from_libtool_triple(LIBWPE 6 0 5)
18+
calculate_library_versions_from_libtool_triple(LIBWPE 8 1 7)
1919

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

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
=====================
2+
1.13.1 - May 12, 2022
3+
=====================
4+
5+
- New API to provide input events to be treated by WebKit as gamepad inputs.
6+
- New WPE_ENABLE_XKB build option, enabled by default, which can be used to
7+
completely avoid usage of libxkbcommon.
8+
- Allow libwpe to be built as a static library. The rest of the code
9+
linked with the static library must provide the _wpe_loader_interface
10+
symbol, as dlopen() will not be used.
11+
- Allow building libwpe within a larger CMake project.
12+
- Update the required Meson version to 0.55.0
13+
114
=======================
215
1.11.1 - August 4, 2021
316
=======================

include/wpe/libwpe-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
#define WPE_MAJOR_VERSION 1
1212
#define WPE_MINOR_VERSION 13
13-
#define WPE_MICRO_VERSION 0
13+
#define WPE_MICRO_VERSION 1
1414

1515
#endif /* !LIBWPE_VERSION_H */

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ api_version = '1.0'
2121
# - If binary compatibility has been broken (eg removed or changed interfaces)
2222
# change to [C+1, 0, 0]
2323
# - If the interface is the same as the previous version, use [C, R+1, A].
24-
soversion = [8, 0, 7]
24+
soversion = [8, 1, 7]
2525

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

0 commit comments

Comments
 (0)