From 9819ce0d5cf13d5a561dc1ca02a0a6e81f1002b3 Mon Sep 17 00:00:00 2001 From: Felix Petriconi Date: Sat, 24 Sep 2022 16:06:37 +0200 Subject: [PATCH] Finalize 1.7.1 release --- CHANGES.md | 4 ++++ CMakeLists.txt | 2 +- stlab/version.hpp | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 793e1aa89..52918460a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## v.1.7.1 - 2022 - September 24 + - [#496] Add missing files to CMakeLists.txt + + ## v.1.7.0 - 2022 - September 2 - Breaking Changes - The build setup now requires executing CMake to generate a config.hpp file for the build. This was done to avoid ODR/API/ABI breakage from having the library self-configure differently when used by multiple sub-projects. See the [build instructions](https://github.com/stlab/libraries/runs/7903922028?check_suite_focus=true). diff --git a/CMakeLists.txt b/CMakeLists.txt index f203f7d7a..91a573e8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required( VERSION 3.23 ) -project( stlab VERSION 1.6.2 LANGUAGES CXX ) +project( stlab VERSION 1.7.1 LANGUAGES CXX ) list( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake" ) include( CTest ) diff --git a/stlab/version.hpp b/stlab/version.hpp index cdc85fc5c..eb7656dea 100644 --- a/stlab/version.hpp +++ b/stlab/version.hpp @@ -19,13 +19,13 @@ // STLAB_VERSION / 100 % 1000 is the minor version // STLAB_VERSION / 100000 is the major version -#define STLAB_VERSION 100602 +#define STLAB_VERSION 100701 // // STLAB_LIB_VERSION must be defined to be the same as STLAB_VERSION // but as a *string* in the form "x_y[_z]" where x is the major version // number, y is the minor version number, and z is the patch level if not 0. -#define STLAB_LIB_VERSION "1_6_2" +#define STLAB_LIB_VERSION "1_7_1" #endif