aboutsummaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-02-17 14:46:32 -0800
committerJack O'Connor <[email protected]>2025-02-17 15:17:40 -0800
commitf8c5f7d023fd77ef7fc6f4596407e510d3468a57 (patch)
tree10858842656309db85fe87fd805492d75393733c /c
parentd4da2150c61944e3e353194335ee885bcc37a8f1 (diff)
version 1.6.01.6.0
Changes since 1.5.5: - Add Hash::from_slice. (#448) - Fix a build error on Windows 7 targets. (#447)
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 ebcca1d..09dc580 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.5.5
+ VERSION 1.6.0
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index 9ed62f9..35f2bb9 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.5.5"
+#define BLAKE3_VERSION_STRING "1.6.0"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64