From 134a13b4f39ac8e8d31a8a514a7041bdb4bc17a2 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Tue, 27 Sep 2022 14:57:47 +0300 Subject: [PATCH] Release version 1.16.0 --- NEWS | 15 ++++++++++++--- meson.build | 4 ++-- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index a52badbc..c5348ad0 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,15 @@ -========================= -0.15.1 - Sptember 2, 2022 -========================= +=========================== +0.16.0 - September 27, 2022 +=========================== + +- core: Fix generated cogcore.pc file to include required libraries. +- core: Fix the build when libmanette is not being used. +- launcher: New --gamepad command line option to choose the gamepad + implementation to use. + +========================== +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 3a2c9873..cd4ec61a 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c99', ], license: 'MIT', - version: '0.15.1', + version: '0.16.0', ) # 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, 1, 1] +cogcore_soversion = [10, 2, 1] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age