diff --git a/CMakeLists.txt b/CMakeLists.txt index f88d739a..fc21e689 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.12) list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake") include(VersioningUtils) -set_project_version(0 13 3) +set_project_version(0 13 90) # Before making a release, the LT_VERSION string should be modified. # The string is of the form C:R:A. @@ -12,7 +12,7 @@ set_project_version(0 13 3) # - 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, change to C:R+1:A -calculate_library_versions_from_libtool_triple(COGCORE 9 2 0) +calculate_library_versions_from_libtool_triple(COGCORE 9 3 0) project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C) include(CMakeDependentOption) diff --git a/NEWS b/NEWS index 28f4af08..04430800 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,27 @@ +======================= +0.13.90 - June 29, 2022 +======================= + +- cmake: Enable libsoup3 usage by default, USE_SOUP2=ON can still be specified + to build against libsoup2. +- cmake: Require version 3.12, which is the same minimum as needed by WebKit. +- cmake: Link the same wpebackend-fdo library in all components to avoid + crashes due to multiple copies loaded with different behaviours. +- cmake: Fix generated .pc file when using an absolute directory for the + CMAKE_INSTALL_LIBDIR option instead of a relative one. +- core: Add "Try again" button to default error pages. +- gtk4: Fix rendering with drivers that support OpenGL 4. +- wl: Avoid crashing due to missing callbacks by explicitly binding to + supported versions of Wayland protocols. +- wl: Fix the build with COG_WESTON_DIRECT_DISPLAY enabled. +- wl: Fix fullscreen surface dimensions when using SHM buffers. +- wl: Add keybindings to refresh the current page (Ctrl-R, F5). +- x11: Fix underlinking when the --as-needed linker flag is in use. +- x11: Fix rendering in non-composited (traditional) window managers. +- drm, gtk4, x11: Factor out and reuse the GLES textured quad painting code. +- drm, wl, x11: Add refresh rate reporting to let WebKit pace rendering to + match the output device. + ========================= 0.13.3 - January 12, 2022 =========================