aboutsummaryrefslogtreecommitdiff
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
-rw-r--r--tools/release.md2
6 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 853d917..693ae87 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "1.8.2"
+version = "1.8.3"
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 eb1da0e..a6d4b5c 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -72,7 +72,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "b3sum"
-version = "1.8.2"
+version = "1.8.3"
dependencies = [
"anyhow",
"blake3",
@@ -92,7 +92,7 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
[[package]]
name = "blake3"
-version = "1.8.2"
+version = "1.8.3"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 52f8d03..cd98c69 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.8.2"
+version = "1.8.3"
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 1093089..28127d4 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()
project(libblake3
- VERSION 1.8.2
+ VERSION 1.8.3
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C CXX ASM
)
diff --git a/c/blake3.h b/c/blake3.h
index 7716ae7..c9303ec 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -30,7 +30,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.8.2"
+#define BLAKE3_VERSION_STRING "1.8.3"
#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 26c4927..bb34142 100644
--- a/tools/release.md
+++ b/tools/release.md
@@ -3,7 +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.
+ - Bump the dependency on the root crate 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.