Skip to content

Commit f5e55ca

Browse files
committed
Bumped to version 0.1.1
1 parent 1c3dc43 commit f5e55ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_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

5252
install(TARGETS hg
53-
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
53+
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)

Diff for: include/hypergrep/constants.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
constexpr static inline std::string_view NAME = "hg";
55
constexpr 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";
88
constexpr static inline std::size_t TYPICAL_FILESYSTEM_BLOCK_SIZE = 4096;
99
constexpr static inline std::size_t FILE_CHUNK_SIZE =
1010
16 * TYPICAL_FILESYSTEM_BLOCK_SIZE;

0 commit comments

Comments
 (0)