Skip to content

Commit

Permalink
Release version 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Sep 27, 2022
1 parent 98fed1e commit 134a13b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit 134a13b

Please sign in to comment.