Skip to content

Commit

Permalink
Updated CMakeLists version to 2.2.2
Browse files Browse the repository at this point in the history
This will allow me to create a tag for release 2.2.2.
  • Loading branch information
etremel committed Oct 22, 2021
1 parent 008b433 commit ed9eea6
Show file tree
Hide file tree
Showing 2 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 @@ -5,7 +5,7 @@ project(derecho CXX)

# Version
set(derecho_VERSION 2.2)
set(derecho_build_VERSION 2.2.1)
set(derecho_build_VERSION 2.2.2)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z -fPIC")
if (${USE_VERBS_API})
Expand Down
6 changes: 3 additions & 3 deletions src/core/git_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ namespace derecho {
const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 2;
const int PATCH_VERSION = 1;
const int COMMITS_AHEAD_OF_VERSION = 24;
const char* VERSION_STRING = "2.2.1";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.1+24";
const int COMMITS_AHEAD_OF_VERSION = 0;
const char* VERSION_STRING = "2.2.2";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.1+0";

}

0 comments on commit ed9eea6

Please sign in to comment.