File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.16)
22
3- project (hypergrep VERSION 0.1.0
3+ project (hypergrep VERSION 0.1.1
44 DESCRIPTION "Recursively search directories for a regex pattern"
55 LANGUAGES CXX)
66
@@ -50,4 +50,4 @@ target_link_libraries(hg PRIVATE
5050 )
5151
5252install (TARGETS hg
53- DESTINATION ${CMAKE_INSTALL_PREFIX} /bin)
53+ DESTINATION ${CMAKE_INSTALL_PREFIX} /bin)
Original file line number Diff line number Diff line change 44constexpr static inline std::string_view NAME = " hg" ;
55constexpr static inline std::string_view DESCRIPTION =
66 " Recursively search directories for a regex pattern" ;
7- constexpr static inline std::string_view VERSION = " 0.1.0 " ;
7+ constexpr static inline std::string_view VERSION = " 0.1.1 " ;
88constexpr static inline std::size_t TYPICAL_FILESYSTEM_BLOCK_SIZE = 4096 ;
99constexpr static inline std::size_t FILE_CHUNK_SIZE =
1010 16 * TYPICAL_FILESYSTEM_BLOCK_SIZE;
You can’t perform that action at this time.
0 commit comments