diff --git a/NEWS b/NEWS index c5348ad0..ddebb404 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +========================= +0.16.1 - October 18, 2022 +========================= + +- core: Fix build failure in some systems. +- drm: Fix missing symbol which made the platform unusable. +- wl: Fix build in systems where the drm_fourcc.h header is not installed + in the default search paths. +- wl: Allow building against libweston-12-protocols. +- meson: Do not check for platform plug-in dependencies if no platform + plug-ins are enabled. + =========================== 0.16.0 - September 27, 2022 =========================== diff --git a/meson.build b/meson.build index 3fc95345..564c2d22 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c99', ], license: 'MIT', - version: '0.16.0', + version: '0.16.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 = [10, 2, 1] +cogcore_soversion = [10, 3, 1] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age