From e70c864cec3eb125ea6797d097da1aca88099da0 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 4 Sep 2020 23:58:35 +0300 Subject: [PATCH] Release version 0.7.90 --- CMakeLists.txt | 4 ++-- NEWS | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f642a456..d1182917 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake") include(VersioningUtils) include(GNUInstallDirs) -set_project_version(0 7 1) +set_project_version(0 7 90) # Before making a release, the LT_VERSION string should be modified. # The string is of the form C:R:A. @@ -13,7 +13,7 @@ set_project_version(0 7 1) # - 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 4 0 3) +calculate_library_versions_from_libtool_triple(COGCORE 4 1 3) project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C) include(DistTargets) diff --git a/NEWS b/NEWS index be750c69..f1d86495 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +========================== +0.7.90 - September 4, 2020 +========================== + +- cog: Added the --ignore-tls-errors command line option which allows ignoring + TLS certificate validation errors. +- cog: Fixed navigation in some sites by following URI passed to window.open() + loading them in the active view. +- fdo: Improve the logic to set the opaque region of the Wayland surface if it + could have changed between exported frames, which saves some CPU time. +- drm: Support choosing the video mode to use using the + COG_PLATFORM_DRM_VIDEO_MODE environment variable. + + ====================== 0.7.1 - April 11, 2020 ======================