aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-04-02 23:06:46 -0700
committerJack O'Connor <[email protected]>2025-04-02 23:08:46 -0700
commitad639b126ef9b5f3b131093363cc3bb6bba4c3bf (patch)
tree5f30236dfabbd0a07d67ca331ae7b58555aa5268
parentd81fd85c8c13c6977d0a2dca1241d1315a4a9943 (diff)
version 1.8.11.8.1
Changes since 1.8.0: - [CMake] Fix transitive dependencies for TBB when libblake3 is built with BLAKE3_USE_TBB=1 (#460 and #461).
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock16
-rw-r--r--b3sum/Cargo.toml4
-rw-r--r--c/CMakeLists.txt2
-rw-r--r--c/blake3.h2
5 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0e70211..46c7d74 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "1.8.0"
+version = "1.8.1"
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 4c68774..20a107d 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -72,7 +72,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "b3sum"
-version = "1.8.0"
+version = "1.8.1"
dependencies = [
"anyhow",
"blake3",
@@ -92,7 +92,7 @@ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
[[package]]
name = "blake3"
-version = "1.8.0"
+version = "1.8.1"
dependencies = [
"arrayref",
"arrayvec",
@@ -120,9 +120,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.5.34"
+version = "4.5.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
+checksum = "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944"
dependencies = [
"clap_builder",
"clap_derive",
@@ -130,9 +130,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.5.34"
+version = "4.5.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
+checksum = "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9"
dependencies = [
"anstream",
"anstyle",
@@ -333,9 +333,9 @@ dependencies = [
[[package]]
name = "rustix"
-version = "1.0.3"
+version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
+checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
dependencies = [
"bitflags",
"errno",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index e90b32f..edc254a 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.8.0"
+version = "1.8.1"
authors = ["Jack O'Connor <[email protected]>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
@@ -15,7 +15,7 @@ pure = ["blake3/pure"]
[dependencies]
anyhow = "1.0.25"
-blake3 = { version = "1.8.0", path = "..", features = ["mmap", "rayon"] }
+blake3 = { version = "1.8.1", path = "..", features = ["mmap", "rayon"] }
clap = { version = "4.0.8", features = ["derive", "wrap_help"] }
hex = "0.4.0"
rayon-core = "1.12.1"
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt
index b737f1a..c7ca78f 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.8.0
+ VERSION 1.8.1
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C CXX ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index ff20dab..ddf5a65 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.8.0"
+#define BLAKE3_VERSION_STRING "1.8.1"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64