Skip to content

Commit 1495053

Browse files
committed
Release version 1.9.91
1 parent e6fcd47 commit 1495053

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
@@ -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 5 3 4)
18+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 6 0 5)
1919

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

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
=======================
2+
1.9.91 - March 15, 2021
3+
=======================
4+
5+
- New API to explicitly deinitialize an EGL renderer target, which allows
6+
implementors of the wpe_renderer_backend_egl_target_interface to
7+
differentiate between destruction and deinitialization.
8+
19
======================
210
1.9.90 - March 6, 2021
311
======================

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 9
13-
#define WPE_MICRO_VERSION 90
13+
#define WPE_MICRO_VERSION 91
1414

1515
#endif /* !LIBWPE_VERSION_H */

meson.build

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

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

0 commit comments

Comments
 (0)