From 95e42b84fc4709974c7b23c7ae885989ab36c31e Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Mon, 19 Aug 2024 10:20:49 -0700 Subject: [PATCH] version 1.5.4 Changes since 1.5.3: - Initial implementation of SIMD acceleration for the XOF (i.e. blake3::Hasher::finalize_xof). This brings long output performance into line with long input performance. Currently AVX-512-only and Unix-only. - Add build support for "gnullvm" targets (Clang on Windows). - The "zeroize" feature no longer depends on proc-macros and syn. --- Cargo.toml | 2 +- b3sum/Cargo.lock | 4 ++-- b3sum/Cargo.toml | 2 +- c/CMakeLists.txt | 2 +- c/blake3.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78c05ca3..85313059 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3" -version = "1.5.3" +version = "1.5.4" authors = ["Jack O'Connor ", "Samuel Neves"] description = "the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock index 23005736..5cb9cfbe 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -71,7 +71,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "b3sum" -version = "1.5.3" +version = "1.5.4" dependencies = [ "anyhow", "blake3", @@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "blake3" -version = "1.5.3" +version = "1.5.4" dependencies = [ "arrayref", "arrayvec", diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 8aa63eed..0671624d 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.5.3" +version = "1.5.4" authors = ["Jack O'Connor "] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt index 2b93e85d..8c325110 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -10,7 +10,7 @@ if (POLICY CMP0102) endif() project(libblake3 - VERSION 1.5.3 + VERSION 1.5.4 DESCRIPTION "BLAKE3 C implementation" LANGUAGES C ASM ) diff --git a/c/blake3.h b/c/blake3.h index 3ca61db7..2e5b1836 100644 --- a/c/blake3.h +++ b/c/blake3.h @@ -30,7 +30,7 @@ extern "C" { #endif -#define BLAKE3_VERSION_STRING "1.5.3" +#define BLAKE3_VERSION_STRING "1.5.4" #define BLAKE3_KEY_LEN 32 #define BLAKE3_OUT_LEN 32 #define BLAKE3_BLOCK_LEN 64