Skip to content

Commit

Permalink
Updated CMakeLists version to 2.2.1
Browse files Browse the repository at this point in the history
This will allow me to create a tag for release 2.2.1.
  • Loading branch information
etremel committed Aug 27, 2021
1 parent 0378959 commit d3aef87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ project(derecho CXX)

# Version
set(derecho_VERSION 2.2)
set(derecho_build_VERSION 2.2.0)
set(derecho_build_VERSION 2.2.1)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z -fPIC")
if (${USE_VERBS_API})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DUSE_VERBS_API")
Expand Down
8 changes: 4 additions & 4 deletions src/core/git_version.cpp
Expand Up @@ -12,9 +12,9 @@ namespace derecho {

const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 2;
const int PATCH_VERSION = 0;
const int COMMITS_AHEAD_OF_VERSION = 23;
const char* VERSION_STRING = "2.2.0";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.0+23";
const int PATCH_VERSION = 1;
const int COMMITS_AHEAD_OF_VERSION = 0;
const char* VERSION_STRING = "2.2.1";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.1+0";

}

0 comments on commit d3aef87

Please sign in to comment.