aboutsummaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-03-30 17:33:10 -0700
committerJack O'Connor <[email protected]>2025-03-30 22:00:46 -0700
commit00c2ea974d33d19d91d8de3c12ff8c8eb1fc8dbd (patch)
tree2635bcb6495c469a1e2a74c58a48a28b4f7e3662 /c
parente1c2ea27fdd717fd924d7b286a125408d7e817f7 (diff)
version 1.8.01.8.0
Changes since 1.7.0: - The Rust crate now provides the `blake3::hazmat` module, which replaces the undocumented and now deprecated `blake3::guts` module. This is intended for advanced use cases like Bao and Iroh, which need to manipulate chunk and subtree "chaining values" directly. See the module docs for more: https://docs.rs/blake3/1.8.0/blake3/hazmat
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 4c31c8a..c929d71 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.7.0
+ VERSION 1.8.0
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C CXX ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index 9da57ec..ff20dab 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.7.0"
+#define BLAKE3_VERSION_STRING "1.8.0"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64