aboutsummaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2024-03-12 00:26:38 -0700
committerJack O'Connor <[email protected]>2024-03-12 00:34:53 -0700
commit54930c95227daaac4dcf1eb3028e2f4e0768d139 (patch)
tree46132387e06d31dcd2bf2dcaf4366243b367d1dd /c
parent58bea0bcbba3629043939aa499068055dd0df017 (diff)
version 1.5.11.5.1
Changes since 1.5.0: - The Rust crate is now compatible with Miri. - ~1% performance improvement on Arm NEON contributed by @divinity76 (#384). - Various fixes and improvements in the CMake build. - The MSRV of b3sum is now 1.74.1. (The MSRV of the library crate is unchanged, 1.66.1.)
Diffstat (limited to 'c')
-rw-r--r--c/CMakeLists.txt2
-rw-r--r--c/blake3.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt
index 8f38144..3a3b232 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -6,7 +6,7 @@ if (POLICY CMP0128)
endif()
project(libblake3
- VERSION 1.5.0
+ VERSION 1.5.1
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index f694dcf..48284e5 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.5.0"
+#define BLAKE3_VERSION_STRING "1.5.1"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64