diff --git a/CMakeLists.txt b/CMakeLists.txt index 25d127a..1156a5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ include(cmake/prelude.cmake) project( fccf - VERSION 0.5.0 + VERSION 0.6.0 DESCRIPTION "fccf recursively searches a directory to find C/C++ source code matching a search string." HOMEPAGE_URL "https://github.com/p-ranav/fccf" LANGUAGES CXX diff --git a/source/main.cpp b/source/main.cpp index ec576e1..c8f20a1 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -16,7 +16,7 @@ int main(int argc, char* argv[]) auto is_stdout = isatty(STDOUT_FILENO) == 1; std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); - argparse::ArgumentParser program("fccf", "0.5.0"); + argparse::ArgumentParser program("fccf", "0.6.0"); program.add_argument("query"); program.add_argument("path");