Skip to content

Commit

Permalink
Finalize 1.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixPetriconi committed Sep 24, 2022
1 parent 0f9e094 commit 9819ce0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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 )
Expand Down
4 changes: 2 additions & 2 deletions stlab/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9819ce0

Please sign in to comment.