aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2024-11-26 18:16:20 -0800
committerJack O'Connor <[email protected]>2024-11-26 18:16:20 -0800
commit81f772a4cd70dc0325047a6a737d2f6f4b92180e (patch)
tree627b465ce6641e7f8dd0b5bdd9c1ada2d23f380a
parentc57d6b6ac25a08360f0adf82f7bbe87156a5fec0 (diff)
version 1.5.51.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.
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock8
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--c/CMakeLists.txt2
-rw-r--r--c/blake3.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e60b8d0..8b1ff7f 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 <[email protected]>", "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 9363a7b..2904481 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 0671624..81eb25e 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 <[email protected]>"]
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 b83abee..ebcca1d 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 2e5b183..9ed62f9 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