From c4625676a21308e7c82175f1ce9a6c8849f22800 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Wed, 15 May 2024 15:39:19 +0300 Subject: [PATCH] Release version 0.18.4 --- NEWS | 9 +++++++++ meson.build | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 06d4023d..af8738b3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +===================== +0.18.4 - May 15, 2024 +===================== + +- meson: Fix the build in systems where the "ln" command cannot calculate + relative symlink target paths. +- wl: Fix some items in popup menus not being rendered. +- wl: Add support for weston-protocols version 14. + ========================== 0.18.3 - February 26, 2024 ========================== diff --git a/meson.build b/meson.build index bd1bd240..42a0fe0a 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.18.3', + version: '0.18.4', ) # 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 = [11, 6, 2] +cogcore_soversion = [11, 7, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age