diff --git a/NEWS b/NEWS index 55f5e96a..b2316e46 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,20 @@ -========================= -0.15.1 - Sptember 2, 2022 -========================= +======================= +0.17.1 - March 11, 2023 +======================= + +- Support building against the new WPE WebKit 2.0 API. +- Allow chossing the gamepad backend at runtime. +- meson: Build in C11 mode by default. +- drm, wl: Improved plug-in documentation. +- headless: Allow configuring the maximum refresh rate. +- gtk4: Follow device scale factor changes. +- wl: Add support for libweston-12-protocols. +- wl: Fix usage of raw codes for keyboard input. +- wl: Fix issues due to attachment of buffers with mismatched sizes. + +========================== +0.15.1 - September 2, 2022 +========================== - launcher: Add new "--proxy" and "--ignore-host" command line options, which allow setting up a network proxy and a list of hosts that would bypass it. diff --git a/meson.build b/meson.build index cc38fefa..a27adee0 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.17.0', + version: '0.17.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, 0, 2] +cogcore_soversion = [11, 1, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age