Skip to content

Commit d2f817c

Browse files
committedOct 18, 2022
Release version 0.16.1
1 parent 3283242 commit d2f817c

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed
 

‎NEWS

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
=========================
2+
0.16.1 - October 18, 2022
3+
=========================
4+
5+
- core: Fix build failure in some systems.
6+
- drm: Fix missing symbol which made the platform unusable.
7+
- wl: Fix build in systems where the drm_fourcc.h header is not installed
8+
in the default search paths.
9+
- wl: Allow building against libweston-12-protocols.
10+
- meson: Do not check for platform plug-in dependencies if no platform
11+
plug-ins are enabled.
12+
113
===========================
214
0.16.0 - September 27, 2022
315
===========================

‎meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ project('cog', 'c',
66
'c_std=c99',
77
],
88
license: 'MIT',
9-
version: '0.16.0',
9+
version: '0.16.1',
1010
)
1111

1212
# Before making a release, the LT_VERSION string should be modified.
@@ -16,7 +16,7 @@ project('cog', 'c',
1616
# - If binary compatibility has been broken (eg removed or changed interfaces)
1717
# change to [C+1, 0, 0]
1818
# - If the interface is the same as the previous version, use [C, R+1, A].
19-
cogcore_soversion = [10, 2, 1]
19+
cogcore_soversion = [10, 3, 1]
2020

2121
# Mangle [C, R, A] into an actual usable *soversion*.
2222
cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age

0 commit comments

Comments
 (0)
Please sign in to comment.