Skip to content

Commit

Permalink
Bumped to version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ranav committed Jun 6, 2023
1 parent 1c3dc43 commit f5e55ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)

project(hypergrep VERSION 0.1.0
project(hypergrep VERSION 0.1.1
DESCRIPTION "Recursively search directories for a regex pattern"
LANGUAGES CXX)

Expand Down Expand Up @@ -50,4 +50,4 @@ target_link_libraries(hg PRIVATE
)

install(TARGETS hg
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
2 changes: 1 addition & 1 deletion include/hypergrep/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
constexpr static inline std::string_view NAME = "hg";
constexpr static inline std::string_view DESCRIPTION =
"Recursively search directories for a regex pattern";
constexpr static inline std::string_view VERSION = "0.1.0";
constexpr static inline std::string_view VERSION = "0.1.1";
constexpr static inline std::size_t TYPICAL_FILESYSTEM_BLOCK_SIZE = 4096;
constexpr static inline std::size_t FILE_CHUNK_SIZE =
16 * TYPICAL_FILESYSTEM_BLOCK_SIZE;
Expand Down

0 comments on commit f5e55ca

Please sign in to comment.