Skip to content

Commit

Permalink
Updated version number to 2.4.0
Browse files Browse the repository at this point in the history
I'm about to create the 2.4.0 release, and this commit needs to exist
first so it can be tagged for the release.
  • Loading branch information
etremel committed May 2, 2024
1 parent 13508bb commit ff98765
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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.3)
set(derecho_build_VERSION 2.3.0)
set(derecho_VERSION 2.4)
set(derecho_build_VERSION 2.4.0)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
if (${USE_VERBS_API})
Expand Down
8 changes: 4 additions & 4 deletions src/core/git_version.cpp
Expand Up @@ -11,10 +11,10 @@
namespace derecho {

const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 3;
const int MINOR_VERSION = 4;
const int PATCH_VERSION = 0;
const int COMMITS_AHEAD_OF_VERSION = 231;
const char* VERSION_STRING = "2.3.0";
const char* VERSION_STRING_PLUS_COMMITS = "2.3.0+231";
const int COMMITS_AHEAD_OF_VERSION = 0;
const char* VERSION_STRING = "2.4.0";
const char* VERSION_STRING_PLUS_COMMITS = "2.3.0+0";

}

0 comments on commit ff98765

Please sign in to comment.