Skip to content

Commit def08a5

Browse files
committed
Release version 1.12.1
1 parent 6f9eebf commit def08a5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
=======================
2+
1.12.1 - August 9, 2022
3+
=======================
4+
5+
- Fixed a crash caused by trying to deallocate already freed graphics
6+
buffers in certain situations.
7+
18
=========================
29
1.12.0 - October 18, 2021
310
=========================

include/wpe/wpebackend-fdo-version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021 Igalia S.L.
2+
* Copyright (C) 2021-2022 Igalia S.L.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions
@@ -28,6 +28,6 @@
2828

2929
#define WPE_FDO_MAJOR_VERSION 1
3030
#define WPE_FDO_MINOR_VERSION 12
31-
#define WPE_FDO_MICRO_VERSION 0
31+
#define WPE_FDO_MICRO_VERSION 1
3232

3333
#endif /* !WPEBACKEND_FDO_VERSION_H */

meson.build

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

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

0 commit comments

Comments
 (0)