Skip to content

Commit

Permalink
Release version 1.15.90
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Sep 13, 2024
1 parent f486b18 commit 6617df9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
============================
1.15.90 - September 13, 2024
============================

- Changed minimum Meson version to 0.52.1
- Fix build issues in some configurations that require an explicit cast
to EGLNativeWindowType.
- Fix WebKit no longer repainting after provisional navigation with
PSON enabled.
- Fix graphics buffer leaks by always freeing them in buffer destroy
listener callbacks.
- Fix a crash caused by a wrong assertion, which was typically triggered
in debug builds when using the NVidia drivers.
- Fix memory leak when the view backend wl_resource is destroyed.
- Fix wpe_dmabuf_pool object leak.

=======================
1.13.1 - August 9, 2022
=======================
Expand Down
4 changes: 2 additions & 2 deletions include/wpe/wpebackend-fdo-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define WPEBACKEND_FDO_VERSION_H

#define WPE_FDO_MAJOR_VERSION 1
#define WPE_FDO_MINOR_VERSION 13
#define WPE_FDO_MICRO_VERSION 1
#define WPE_FDO_MINOR_VERSION 15
#define WPE_FDO_MICRO_VERSION 90

#endif /* !WPEBACKEND_FDO_VERSION_H */
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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 = [10, 1, 9]
soversion = [11, 0, 10]

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

0 comments on commit 6617df9

Please sign in to comment.