aboutsummaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2023-06-08 12:24:05 -0700
committerJack O'Connor <[email protected]>2023-06-08 13:06:32 -0700
commit65733a753b91f560293b6f9689e1dc55c2c923b9 (patch)
tree3466793aa5d310fd063c4a939e60e0f3a004aeae /c
parent0c7add10c6a849611f43563a52b87bbcd66edac1 (diff)
version 1.4.01.4.0
Changes since 1.3.3: - The C implementation provides a `CMakeLists.txt` for callers who build with CMake. The CMake build is not yet stable, and callers should expect breaking changes in patch version updates. The "by hand" build will always continue to be supported and documented. - `b3sum` supports the `--seek` flag, to set the starting position in the output stream. - `b3sum --check` prints a summary of errors to stderr. - `Hash::as_bytes` is const. - `Hash` supports `from_bytes`, which is const.
Diffstat (limited to 'c')
-rw-r--r--c/blake3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/blake3.h b/c/blake3.h
index 7ac9c4c..aa4bfa6 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.3.3"
+#define BLAKE3_VERSION_STRING "1.4.0"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64