Skip to content

Commit

Permalink
Merge pull request #349 from FelixPetriconi/develop
Browse files Browse the repository at this point in the history
Prepare 1.5.5 release
  • Loading branch information
FelixPetriconi authored Jan 29, 2021
2 parents 6c8c13c + 49e1742 commit 31f2c71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else()
set( subproject OFF )
endif()

project( stlab VERSION 1.5.4 LANGUAGES CXX )
project( stlab VERSION 1.5.5 LANGUAGES CXX )

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def option_on_off(option):

class StlabLibrariesConan(ConanFile):
name = "stlab"
version = "1.5.4" #TODO(fernando): see how to automate the version number
version = "1.5.5" #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"
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 100504
#define STLAB_VERSION 100505

//
// 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_5_4"
#define STLAB_LIB_VERSION "1_5_5"

#endif

0 comments on commit 31f2c71

Please sign in to comment.