Skip to content

Commit 8666368

Browse files
committed
Release version 1.14.2
1 parent e346a31 commit 8666368

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CMakeLists.txt

+1-1
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 9 1 8)
18+
calculate_library_versions_from_libtool_triple(LIBWPE 9 2 8)
1919

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

NEWS

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
=========================
2+
1.14.2 - January 25, 2024
3+
=========================
4+
5+
- Allow resetting the fullscreen client to a null pointer.
6+
- Fix usage of the _wpe_loader_interface with the static loader.
7+
18
=========================
29
1.14.1 - February 2, 2023
310
=========================

include/wpe/libwpe-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929

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

3434
#endif /* !LIBWPE_VERSION_H */

meson.build

+1-1
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 = [9, 1, 8]
24+
soversion = [9, 2, 8]
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)