diff --git a/NEWS b/NEWS index 949bd0b4..8b04e60e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +========================== +0.18.1 - November 15, 2023 +========================== + +- core: Avoid leaking web views due to CogShell holding one reference + too much on them. +- drm: Fix touch region dimensions when the output is rotated by 90 or + 270 degrees. +- meson: Fix configuration error when only the Wayland platform plug-in + is selected. + ===================== 0.18.0 - May 20, 2023 ===================== diff --git a/meson.build b/meson.build index aea4aae4..846eee0a 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.18.0', + version: '0.18.1', ) # 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, 3, 2] +cogcore_soversion = [11, 4, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age