From 066c93e941e9af94f12abc250ca7838f709d777d Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Wed, 13 Dec 2023 11:00:55 +0200 Subject: [PATCH] Release version 0.18.2 --- NEWS | 9 +++++++++ meson.build | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 8b04e60e..a654a462 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +========================== +0.18.2 - December 13, 2023 +========================== + +- drm: Fix crash on iMX.6 (and possibly others) by improving how the CRTC + and encoder combination is chosen. +- wl: Add support for Weston protocols version 13. +- launcher: Handle GApplication activation to avoid a warning. + ========================== 0.18.1 - November 15, 2023 ========================== diff --git a/meson.build b/meson.build index 846eee0a..ab35a3d9 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.18.1', + version: '0.18.2', ) # Before making a release, the LT_VERSION string should be modified. @@ -16,7 +16,7 @@ project('cog', 'c', # - 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]. -cogcore_soversion = [11, 4, 2] +cogcore_soversion = [11, 5, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age