From 4a4e3ced80116c90962012d36d00f7e3d55142be Mon Sep 17 00:00:00 2001 From: Edward Tremel Date: Fri, 26 Jun 2020 17:20:11 -0400 Subject: [PATCH] Updated CMake version in preparation for next tagged release Also updated git_version.cpp manually, rather than with the commit hook, so that the version number will already be updated in the tagged commit. --- CMakeLists.txt | 2 +- src/core/git_version.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 50fc50d8..afaec221 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(derecho CXX) # Version set(derecho_VERSION 2.0) -set(derecho_build_VERSION 2.0.0) +set(derecho_build_VERSION 2.0.1) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z -fPIC") if (${USE_VERBS_API}) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DUSE_VERBS_API") diff --git a/src/core/git_version.cpp b/src/core/git_version.cpp index 4f10a8cd..07727f33 100644 --- a/src/core/git_version.cpp +++ b/src/core/git_version.cpp @@ -12,9 +12,9 @@ namespace derecho { const int MAJOR_VERSION = 2; const int MINOR_VERSION = 0; -const int PATCH_VERSION = 0; -const int COMMITS_AHEAD_OF_VERSION = 5; -const char* VERSION_STRING = "2.0.0"; -const char* VERSION_STRING_PLUS_COMMITS = "2.0.0+5"; +const int PATCH_VERSION = 1; +const int COMMITS_AHEAD_OF_VERSION = 0; +const char* VERSION_STRING = "2.0.1"; +const char* VERSION_STRING_PLUS_COMMITS = "2.0.1+0"; }