Skip to content

Commit 016b761

Browse files
committed
⬆️ [v3.0.1]
1 parent 5eb4a8f commit 016b761

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ template<
369369
> Configuration
370370
371371
```cpp
372-
#define MPH 3'0'0 // Current library version (SemVer)
372+
#define MPH 3'0'1 // Current library version (SemVer)
373373
#define MPH_PAGE_SIZE // [default: not defined]
374374
// If defined safe memcpy will be used for string-like
375375
// keys if the read is close to the page boundry (4096u)
@@ -502,7 +502,7 @@ template<
502502
CPMAddPackage(
503503
Name mph
504504
GITHUB_REPOSITORY boost-ext/mph
505-
GIT_TAG v3.0.0
505+
GIT_TAG v3.0.1
506506
)
507507
add_library(mph INTERFACE)
508508
target_include_directories(mph SYSTEM INTERFACE ${mph_SOURCE_DIR})

mph

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
// http://www.boost.org/LICENSE_1_0.txt)
77
//
88
#ifndef MPH
9-
#define MPH 3'0'0 // SemVer
9+
#define MPH 3'0'1 // SemVer
1010
#pragma GCC system_header
1111

1212
/**
1313
* [Minimal] Static perfect hash library (https://github.com/boost-ext/mph)
1414
*/
15-
namespace mph::inline v3_0_0 {
15+
namespace mph::inline v3_0_1 {
1616
using u8 = __UINT8_TYPE__;
1717
using u16 = __UINT16_TYPE__;
1818
using u32 = __UINT32_TYPE__;

0 commit comments

Comments
 (0)