diff options
| author | Jack O'Connor <[email protected]> | 2025-04-02 23:06:46 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2025-04-02 23:08:46 -0700 |
| commit | ad639b126ef9b5f3b131093363cc3bb6bba4c3bf (patch) | |
| tree | 5f30236dfabbd0a07d67ca331ae7b58555aa5268 /c | |
| parent | d81fd85c8c13c6977d0a2dca1241d1315a4a9943 (diff) | |
version 1.8.11.8.1
Changes since 1.8.0:
- [CMake] Fix transitive dependencies for TBB when libblake3 is built
with BLAKE3_USE_TBB=1 (#460 and #461).
Diffstat (limited to 'c')
| -rw-r--r-- | c/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | c/blake3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt index b737f1a..c7ca78f 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -10,7 +10,7 @@ if (POLICY CMP0102) endif() project(libblake3 - VERSION 1.8.0 + VERSION 1.8.1 DESCRIPTION "BLAKE3 C implementation" LANGUAGES C CXX ASM ) @@ -30,7 +30,7 @@ extern "C" { #endif -#define BLAKE3_VERSION_STRING "1.8.0" +#define BLAKE3_VERSION_STRING "1.8.1" #define BLAKE3_KEY_LEN 32 #define BLAKE3_OUT_LEN 32 #define BLAKE3_BLOCK_LEN 64 |
