diff --git a/NEWS b/NEWS index 04430800..a52badbc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +========================= +0.15.1 - Sptember 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. +- drm, gtk4, wl, x11: Add support for gamepads using libmanette. +- build: Switch the build system from CMake to Meson. + ======================= 0.13.90 - June 29, 2022 ======================= diff --git a/meson.build b/meson.build index d6fe9c88..90e14391 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c99', ], license: 'MIT', - version: '0.15.0', + version: '0.15.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, 0, 1] +cogcore_soversion = [10, 1, 1] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age