summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock4
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--c/CMakeLists.txt2
-rw-r--r--c/blake3.h2
5 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 78c05ca..8531305 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 <oconnor663@gmail.com>", "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 2300573..5cb9cfb 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 8aa63ee..0671624 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 <oconnor663@gmail.com>"]
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 2b93e85..8c32511 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 3ca61db..2e5b183 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