From 81f772a4cd70dc0325047a6a737d2f6f4b92180e Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Tue, 26 Nov 2024 18:16:20 -0800 Subject: [PATCH] version 1.5.5 Changes since 1.5.4: - `b3sum --check` now supports checkfiles with Windows-style newlines. `b3sum` still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them. - The "digest" feature (deleted in v1.5.2) has been added back to the `blake3` crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature. --- Cargo.toml | 2 +- b3sum/Cargo.lock | 8 ++++---- b3sum/Cargo.toml | 2 +- c/CMakeLists.txt | 2 +- c/blake3.h | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e60b8d0ff..8b1ff7f37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3" -version = "1.5.4" +version = "1.5.5" 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 9363a7bd4..2904481d0 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -71,7 +71,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "b3sum" -version = "1.5.4" +version = "1.5.5" dependencies = [ "anyhow", "blake3", @@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "blake3" -version = "1.5.4" +version = "1.5.5" dependencies = [ "arrayref", "arrayvec", @@ -249,9 +249,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "libc" -version = "0.2.165" +version = "0.2.166" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" +checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36" [[package]] name = "linux-raw-sys" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 0671624d0..81eb25e48 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.5.4" +version = "1.5.5" 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 b83abee04..ebcca1dbb 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -10,7 +10,7 @@ if (POLICY CMP0102) endif() project(libblake3 - VERSION 1.5.4 + VERSION 1.5.5 DESCRIPTION "BLAKE3 C implementation" LANGUAGES C ASM ) diff --git a/c/blake3.h b/c/blake3.h index 2e5b1836c..9ed62f97e 100644 --- a/c/blake3.h +++ b/c/blake3.h @@ -30,7 +30,7 @@ extern "C" { #endif -#define BLAKE3_VERSION_STRING "1.5.4" +#define BLAKE3_VERSION_STRING "1.5.5" #define BLAKE3_KEY_LEN 32 #define BLAKE3_OUT_LEN 32 #define BLAKE3_BLOCK_LEN 64