Skip to content

Commit e0814ca

Browse files
committed
Release 1.16.3
1 parent cb90396 commit e0814ca

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CMakeLists.txt

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

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

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
===========================
2+
1.16.3 - September 24, 2025
3+
===========================
4+
5+
- Log messages to the logd service on Android, instead of using
6+
the standard error stream.
7+
- Fix the build with CMake 4.0 and newer.
8+
19
=========================
210
1.16.2 - February 6, 2025
311
=========================

include/wpe/libwpe-version.h

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

3030
#define WPE_MAJOR_VERSION 1
3131
#define WPE_MINOR_VERSION 16
32-
#define WPE_MICRO_VERSION 2
32+
#define WPE_MICRO_VERSION 3
3333

3434
#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 = [10, 5, 9]
24+
soversion = [10, 6, 9]
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)