From 60df9208c58dd20502fd530cdd66541ec74028df Mon Sep 17 00:00:00 2001 From: Pranav Srinivas Kumar Date: Thu, 28 Apr 2022 13:08:25 -0500 Subject: [PATCH] Bumped version to v0.4.0 --- CMakeLists.txt | 2 +- source/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bd4ede..768fdaf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ include(cmake/prelude.cmake) project( fccf - VERSION 0.3.0 + VERSION 0.4.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 fcf98a6..97cc55f 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -16,7 +16,7 @@ int main(int argc, char* argv[]) const auto is_stdout = isatty(STDOUT_FILENO) == 1; std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); - argparse::ArgumentParser program("search", "0.3.0"); + argparse::ArgumentParser program("search", "0.4.0"); program.add_argument("query"); program.add_argument("path");