aboutsummaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-04-20 16:33:26 -0700
committerJack O'Connor <[email protected]>2025-04-20 16:42:32 -0700
commitdf610ddc3b93841ffc59a87e3da659a15910eb46 (patch)
tree9278cf5d4900d47d1942d277311656bf5b4dfa47 /c
parent21afc1a02f79a1bc8fc14156b0e95c8711c03371 (diff)
version 1.8.21.8.2
Changes since 1.8.1: - Fixes to the CMake build, particularly around the new TBB feature.
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 13ef19b..ac4a079 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.8.1
+ VERSION 1.8.2
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C CXX ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index ddf5a65..0893295 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.8.1"
+#define BLAKE3_VERSION_STRING "1.8.2"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64