From b8d0ad664157bfa11593846aec46b5d59716a7dc Mon Sep 17 00:00:00 2001 From: Edward Tremel Date: Fri, 11 Oct 2024 16:00:41 -0400 Subject: [PATCH] Fixed an error in git_version.cpp The previous commit accidentally changed the patch version in git_version.cpp. This was unintentional, done by my githook script. --- src/core/git_version.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/git_version.cpp b/src/core/git_version.cpp index d2f56a23..20da88fd 100644 --- a/src/core/git_version.cpp +++ b/src/core/git_version.cpp @@ -6,15 +6,15 @@ * local repository's .git/hooks/ directory. */ -#include "derecho/core/git_version.hpp" +#include namespace derecho { const int MAJOR_VERSION = 2; const int MINOR_VERSION = 4; -const int PATCH_VERSION = 1; +const int PATCH_VERSION = 0; const int COMMITS_AHEAD_OF_VERSION = 2; -const char* VERSION_STRING = "2.4.1"; -const char* VERSION_STRING_PLUS_COMMITS = "2.4.1+2"; +const char* VERSION_STRING = "2.4.0"; +const char* VERSION_STRING_PLUS_COMMITS = "2.4.0+2"; }