aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-02-17 14:46:32 -0800
committerJack O'Connor <[email protected]>2025-02-17 15:17:40 -0800
commitf8c5f7d023fd77ef7fc6f4596407e510d3468a57 (patch)
tree10858842656309db85fe87fd805492d75393733c
parentd4da2150c61944e3e353194335ee885bcc37a8f1 (diff)
version 1.6.01.6.0
Changes since 1.5.5: - Add Hash::from_slice. (#448) - Fix a build error on Windows 7 targets. (#447)
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock4
-rw-r--r--b3sum/Cargo.toml4
-rw-r--r--c/CMakeLists.txt2
-rw-r--r--c/blake3.h2
-rw-r--r--tools/release.md1
6 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index aec25a8..0f5a861 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "1.5.5"
+version = "1.6.0"
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 10adfc9..bfcb9d2 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -72,7 +72,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "b3sum"
-version = "1.5.5"
+version = "1.6.0"
dependencies = [
"anyhow",
"blake3",
@@ -92,7 +92,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
[[package]]
name = "blake3"
-version = "1.5.5"
+version = "1.6.0"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 81eb25e..e592120 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.5.5"
+version = "1.6.0"
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", path = "..", features = ["mmap", "rayon"] }
+blake3 = { version = "1.6.0", 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 ebcca1d..09dc580 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.5.5
+ VERSION 1.6.0
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index 9ed62f9..35f2bb9 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.5.5"
+#define BLAKE3_VERSION_STRING "1.6.0"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64
diff --git a/tools/release.md b/tools/release.md
index 0d05eba..26c4927 100644
--- a/tools/release.md
+++ b/tools/release.md
@@ -3,6 +3,7 @@
- Make sure `cargo outdated -R` is clean in the root and in b3sum/.
- Bump the version in the root Cargo.toml.
- Bump the version in b3sum/Cargo.toml.
+ - Bump the dependency version too, if new features are used.
- Delete b3sum/Cargo.lock and recreate it with `cargo build` or similar.
- Update the `-h` output in b3sum/README.md if it's changed.
- Bump `BLAKE3_VERSION_STRING` in c/blake3.h.