From 8baeb2e7ee60861eb1aa6c7aae5b32747af3f87d Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Fri, 26 Nov 2021 14:33:16 +0200 Subject: [PATCH] Release version 0.13.1 --- CMakeLists.txt | 4 ++-- NEWS | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e9dc14a..73164ce1 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 13 0) +set_project_version(0 13 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 13 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 8 0 1) +calculate_library_versions_from_libtool_triple(COGCORE 9 0 0) project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C) include(DistTargets) diff --git a/NEWS b/NEWS index c72aaa03..fdc0b15d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +========================== +0.13.1 - November 26, 2021 +========================== + +- launcher: Support setting memory limits using command line options. +- core: Remove CogLauncher from the library, as it is in practice an + implementation detail of the cog launcher. +- cmake: Fix calculation of default installation path for platform plug-ins. + ========================= 0.11.1 - November 3, 2021 =========================