Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-dolzhenko committed Jan 24, 2021
1 parent afade5a commit 0b27022
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.3)
cmake_minimum_required(VERSION 3.7)
project(REViewer)

set(CMAKE_CXX_STANDARD 11)
Expand Down
4 changes: 2 additions & 2 deletions reviewer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.3)
project(REViewer VERSION 0.0.1 LANGUAGES C CXX)
cmake_minimum_required(VERSION 3.7)
project(REViewer VERSION 0.1.1 LANGUAGES C CXX)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
4 changes: 2 additions & 2 deletions reviewer/app/REViewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ optional<WorkflowArguments> getCommandLineArguments(int argc, char** argv)

if (argumentMap.count("version"))
{
std::cerr << "REViewer v0.1.0" << std::endl;
std::cerr << "REViewer v0.1.1" << std::endl;
return boost::none;
}

Expand All @@ -94,4 +94,4 @@ int main(int argc, char** argv)
}

return 0;
}
}

0 comments on commit 0b27022

Please sign in to comment.