File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.16)
2
2
3
- project (hypergrep VERSION 0.1.0
3
+ project (hypergrep VERSION 0.1.1
4
4
DESCRIPTION "Recursively search directories for a regex pattern"
5
5
LANGUAGES CXX)
6
6
@@ -50,4 +50,4 @@ target_link_libraries(hg PRIVATE
50
50
)
51
51
52
52
install (TARGETS hg
53
- DESTINATION ${CMAKE_INSTALL_PREFIX} /bin)
53
+ DESTINATION ${CMAKE_INSTALL_PREFIX} /bin)
Original file line number Diff line number Diff line change 4
4
constexpr static inline std::string_view NAME = " hg" ;
5
5
constexpr static inline std::string_view DESCRIPTION =
6
6
" 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 " ;
8
8
constexpr static inline std::size_t TYPICAL_FILESYSTEM_BLOCK_SIZE = 4096 ;
9
9
constexpr static inline std::size_t FILE_CHUNK_SIZE =
10
10
16 * TYPICAL_FILESYSTEM_BLOCK_SIZE;
You can’t perform that action at this time.
0 commit comments