From 3ee1919734ad30b00da54b38eef87f861f7ebee9 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 22 Feb 2021 17:12:08 +0200 Subject: [PATCH] Release version 0.8.1 --- CMakeLists.txt | 4 ++-- NEWS | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8727ca7..cb510873 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.3) list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake") include(VersioningUtils) -set_project_version(0 8 0) +set_project_version(0 8 1) # 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 8 0) # - 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 2 3) +calculate_library_versions_from_libtool_triple(COGCORE 4 3 3) project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C) include(DistTargets) diff --git a/NEWS b/NEWS index e11c16d2..44fee749 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +========================= +0.8.1 - February 22, 2021 +========================= + +- core: Improved cog_web_view_connect_default_error_handlers() to avoid + accidentally overriding already connected signal handlers. +- drm: Fixed keyboard input when using modifier keys (e.g. Shift). +- drm: Fixed crashes during deinitialization. +- drm, fdo: Improved reliability for drivers which do not expose all their + functionality via eglGetProcAddress(). +- Improved behaviour of the CMake build system at configuration time. + ========================== 0.8.0 - September 12, 2020 ==========================