We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8504c commit f64b3ceCopy full SHA for f64b3ce
CMakeLists.txt
@@ -4,7 +4,7 @@ include(cmake/prelude.cmake)
4
5
project(
6
fccf
7
- VERSION 0.5.0
+ VERSION 0.6.0
8
DESCRIPTION "fccf recursively searches a directory to find C/C++ source code matching a search string."
9
HOMEPAGE_URL "https://github.com/p-ranav/fccf"
10
LANGUAGES CXX
source/main.cpp
@@ -16,7 +16,7 @@ int main(int argc, char* argv[])
16
auto is_stdout = isatty(STDOUT_FILENO) == 1;
17
std::ios_base::sync_with_stdio(false);
18
std::cin.tie(NULL);
19
- argparse::ArgumentParser program("fccf", "0.5.0");
+ argparse::ArgumentParser program("fccf", "0.6.0");
20
program.add_argument("query");
21
program.add_argument("path");
22
0 commit comments