Skip to content

Commit

Permalink
Correctly updated git_version.cpp
Browse files Browse the repository at this point in the history
I can't believe I messed that up in the previous commit. When editing
git_version.cpp manually (as I have to do in a tagged commit, since the
commit-hook script won't work), it's important to change both the
constants and the strings at the same time.
  • Loading branch information
etremel committed Oct 22, 2021
1 parent ed9eea6 commit 066253c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/git_version.cpp
Expand Up @@ -12,9 +12,9 @@ namespace derecho {

const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 2;
const int PATCH_VERSION = 1;
const int PATCH_VERSION = 2;
const int COMMITS_AHEAD_OF_VERSION = 0;
const char* VERSION_STRING = "2.2.2";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.1+0";
const char* VERSION_STRING_PLUS_COMMITS = "2.2.2+0";

}

0 comments on commit 066253c

Please sign in to comment.