From ebcf6a6dff1282eb680c255f3534670658390ed8 Mon Sep 17 00:00:00 2001 From: Felix Petriconi Date: Wed, 10 Feb 2021 20:14:10 +0100 Subject: [PATCH] Fix #363 --- CHANGES.md | 6 +++++- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 08fd4133d..c21fe5e77 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## v.1.6.1 - 2021 - February 10 + - Fixed issues + - [#363]:(https://github.com/stlab/libraries/issues/363) Wrong version in the 1.6.0 release + ## v1.6.0 - 2021 - February 9 - Backport the library to support C++14 and later - Better auto-configuration - no need for compiler flags. @@ -5,7 +9,7 @@ ## v1.5.6 - 2021 - February 1 - Fixed issues - = [#352]:(https://github.com/stlab/libraries/issues/352) Non portable 'warning' preprocessor command + - [#352]:(https://github.com/stlab/libraries/issues/352) Non portable 'warning' preprocessor command - [#354]:(https://github.com/stlab/libraries/issues/354) Visual Studio 2017 fails to compiler async with std::function as argument ## v1.5.5 - 2021 - January 29 diff --git a/CMakeLists.txt b/CMakeLists.txt index 78601f1da..35276ecc0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ else() set( subproject OFF ) endif() -project( stlab VERSION 1.5.6 LANGUAGES CXX ) +project( stlab VERSION 1.6.1 LANGUAGES CXX ) # Overriden from Conan? # set(CMAKE_CXX_STANDARD 17) diff --git a/README.md b/README.md index 71723e846..8b38fd795 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ The complete documentation is available on the [stlab home page](http://stlab.cc Release changelogs are listed in [CHANGES.md](CHANGES.md). # Supported Platforms -- All OS that have a C++17 compliant compiler +- All OS that have a C++14 compliant compiler # Requirements - C++17 Compiler diff --git a/conanfile.py b/conanfile.py index f4c26390b..2b764934b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,7 +14,7 @@ def option_on_off(option): class StlabLibrariesConan(ConanFile): name = "stlab" - version = "1.5.6" #TODO(fernando): see how to automate the version number + version = "1.6.1" #TODO(fernando): see how to automate the version number license = "http://www.boost.org/users/license.html" url = "https://github.com/stlab/libraries" description = "Software Technology Lab (stlab) libraries"