From 7ba5420f49c5ca212daba20619f0f772fcc1c5ce Mon Sep 17 00:00:00 2001 From: Kris Jusiak Date: Wed, 24 Apr 2024 22:07:07 -0500 Subject: [PATCH] :arrow_up: v1.0.8 --- CMakeLists.txt | 2 +- README.md | 2 +- mph | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a2d695..03ce834 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.21) project( mph - VERSION 1.0.7 + VERSION 1.0.8 LANGUAGES CXX ) diff --git a/README.md b/README.md index 8d0ae62..4bceada 100644 --- a/README.md +++ b/README.md @@ -493,7 +493,7 @@ constexpr auto policies = [](auto&& data, a > Configuration ```cpp -#define MPH 1'0'7 // Current library version (SemVer) +#define MPH 1'0'8 // Current library version (SemVer) #define MPH_FIXED_STRING_MAX_SIZE 32u // [default] #define MPH_ALLOW_UNSAFE_MEMCPY 1 // [enabled by default] Faster but potentially unsafe memcpy, only required for string based keys #define MPH_PAGE_SIZE 4096u // Only used if MPH_ALLOW_UNSAFE_MEMCPY is enabled diff --git a/mph b/mph index a302add..8843eb1 100644 --- a/mph +++ b/mph @@ -14,7 +14,7 @@ export module mph; #endif #ifndef MPH -#define MPH 1'0'7 // SemVer - should match mph namespace +#define MPH 1'0'8 // SemVer - should match mph namespace #include #include @@ -54,7 +54,7 @@ export /** * Minimal perfect hash function library (https://en.wikipedia.org/wiki/Perfect_hash_function#Minimal_perfect_hash_function) */ -namespace mph::inline v1_0_7 { +namespace mph::inline v1_0_8 { template struct basic_fixed_string final { constexpr basic_fixed_string() = default; template @@ -970,6 +970,6 @@ template static_assert(1 == get<0>(pair{1, 2})); static_assert(2 == get<1>(pair{1, 2})); // clang-format on -} // namespace mph::inline v1_0_7 +} // namespace mph::inline v1_0_8 #endif // MPH #endif // __cplusplus