Skip to content

Commit

Permalink
Fixed an error in git_version.cpp
Browse files Browse the repository at this point in the history
The previous commit accidentally changed the patch version in
git_version.cpp. This was unintentional, done by my githook script.
  • Loading branch information
etremel committed Oct 11, 2024
1 parent a728eab commit b8d0ad6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/git_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
* local repository's .git/hooks/ directory.
*/

#include "derecho/core/git_version.hpp"
#include <derecho/core/git_version.hpp>

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";

}

0 comments on commit b8d0ad6

Please sign in to comment.