Skip to content

Commit

Permalink
Updated version number to 2.3.0
Browse files Browse the repository at this point in the history
We're ready for the 2.3 release, and this commit will allow me to create
a tag for it.
  • Loading branch information
etremel committed May 19, 2022
1 parent 498b8ce commit 3aef3d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -4,8 +4,8 @@ set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
project(derecho CXX)

# Version
set(derecho_VERSION 2.2)
set(derecho_build_VERSION 2.2.2)
set(derecho_VERSION 2.3)
set(derecho_build_VERSION 2.3.0)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
if (${USE_VERBS_API})
Expand Down
10 changes: 5 additions & 5 deletions src/core/git_version.cpp
Expand Up @@ -11,10 +11,10 @@
namespace derecho {

const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 2;
const int PATCH_VERSION = 2;
const int COMMITS_AHEAD_OF_VERSION = 120;
const char* VERSION_STRING = "2.2.2";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.2+120";
const int MINOR_VERSION = 3;
const int PATCH_VERSION = 0;
const int COMMITS_AHEAD_OF_VERSION = 00;
const char* VERSION_STRING = "2.3.0";
const char* VERSION_STRING_PLUS_COMMITS = "2.3.0+0";

}

0 comments on commit 3aef3d8

Please sign in to comment.