From def08a5b3cbe56d1d88303102c995b6ad7d1c804 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Tue, 9 Aug 2022 15:40:14 +0300 Subject: [PATCH] Release version 1.12.1 --- NEWS | 7 +++++++ include/wpe/wpebackend-fdo-version.h | 4 ++-- meson.build | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 39af70b..2f4b6fb 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +======================= +1.12.1 - August 9, 2022 +======================= + +- Fixed a crash caused by trying to deallocate already freed graphics + buffers in certain situations. + ========================= 1.12.0 - October 18, 2021 ========================= diff --git a/include/wpe/wpebackend-fdo-version.h b/include/wpe/wpebackend-fdo-version.h index 585e88a..bbbf6b3 100644 --- a/include/wpe/wpebackend-fdo-version.h +++ b/include/wpe/wpebackend-fdo-version.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 Igalia S.L. + * Copyright (C) 2021-2022 Igalia S.L. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -28,6 +28,6 @@ #define WPE_FDO_MAJOR_VERSION 1 #define WPE_FDO_MINOR_VERSION 12 -#define WPE_FDO_MICRO_VERSION 0 +#define WPE_FDO_MICRO_VERSION 1 #endif /* !WPEBACKEND_FDO_VERSION_H */ diff --git a/meson.build b/meson.build index 13cf68d..42adda8 100644 --- a/meson.build +++ b/meson.build @@ -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 = [9, 0, 8] +soversion = [9, 1, 8] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age