From dc7860276450661ae33a836978f41b8b63a9db64 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 12 May 2023 12:07:02 +0300 Subject: [PATCH] Release version 0.17.90 --- NEWS | 10 ++++++++++ meson.build | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index b2316e46..4260abf6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +====================== +0.17.90 - May 12, 2023 +====================== + +- drm: Properly support input-less setups and situations in which the + initialization of the XKB context may have failed. +- x11, wl: Make mouse scroll wheel behaviour snappier. +- launcher: Support passing the platform plug-in name and its parameters + using environment variables. + ======================= 0.17.1 - March 11, 2023 ======================= diff --git a/meson.build b/meson.build index a27adee0..1fb7b46e 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.17.1', + version: '0.17.90', ) # 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, 1, 2] +cogcore_soversion = [11, 2, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age