Skip to content

Commit 5d7c720

Browse files
committed
Release version 0.18.5
1 parent 891f4f4 commit 5d7c720

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
=====================
2+
0.18.5 - May 29, 2025
3+
=====================
4+
5+
- meson: Make the libmanette support explicitly configurable.
6+
- core: Avoid re-registration of URI scheme handlers.
7+
- wl: Fix mouse button release events, always passing the button number.
8+
- wl: Fix the key repeat timeout.
9+
- wl: Handle mouse button modifiers.
10+
111
=====================
212
0.18.4 - May 15, 2024
313
=====================

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ project('cog', 'c',
66
'c_std=c11',
77
],
88
license: 'MIT',
9-
version: '0.18.4',
9+
version: '0.18.5',
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 = [11, 7, 2]
19+
cogcore_soversion = [11, 8, 2]
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)