From 7109b15a1dd48131350e2de3ed55376414ab8df8 Mon Sep 17 00:00:00 2001 From: Edward Tremel Date: Thu, 9 May 2024 13:38:57 -0400 Subject: [PATCH] Reset git_version.cpp to 2.4.0 in preparation for new release I'm going to re-do the 2.4.0 release to include the config.h fixes, so the new commit it points to needs to have COMMITS_AHEAD_OF_VERSION = 0. --- src/core/git_version.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/git_version.cpp b/src/core/git_version.cpp index 20da88fd..20fe30e4 100644 --- a/src/core/git_version.cpp +++ b/src/core/git_version.cpp @@ -13,8 +13,8 @@ namespace derecho { const int MAJOR_VERSION = 2; const int MINOR_VERSION = 4; const int PATCH_VERSION = 0; -const int COMMITS_AHEAD_OF_VERSION = 2; +const int COMMITS_AHEAD_OF_VERSION = 0; const char* VERSION_STRING = "2.4.0"; -const char* VERSION_STRING_PLUS_COMMITS = "2.4.0+2"; +const char* VERSION_STRING_PLUS_COMMITS = "2.4.0+0"; }