diff --git a/NEWS b/NEWS index a654a462..06d4023d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +========================== +0.18.3 - February 26, 2024 +========================== + +- drm: Fix handling of the scaling factor setting. +- gtk4: Take scaling factor into account for pointer events. +- launcher: Support toggling WebKit features with a new --features/-F command + line option, when built against WebKit 2.42.0 or newer. + ========================== 0.18.2 - December 13, 2023 ========================== diff --git a/meson.build b/meson.build index ab35a3d9..bd1bd240 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.18.2', + version: '0.18.3', ) # 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, 5, 2] +cogcore_soversion = [11, 6, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age