diff --git a/NEWS b/NEWS index 4260abf6..949bd0b4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +===================== +0.18.0 - May 20, 2023 +===================== + +- wl: Make output device scaling configuration more robust, which among + other things fixes blurry rendering in some compositors. + ====================== 0.17.90 - May 12, 2023 ====================== diff --git a/meson.build b/meson.build index 1fb7b46e..aea4aae4 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('cog', 'c', 'c_std=c11', ], license: 'MIT', - version: '0.17.90', + version: '0.18.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 = [11, 2, 2] +cogcore_soversion = [11, 3, 2] # Mangle [C, R, A] into an actual usable *soversion*. cogcore_soversion_major = cogcore_soversion[0] - cogcore_soversion[2] # Current-Age