summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2022-11-20 15:24:27 -0800
committerJack O'Connor <oconnor663@gmail.com>2022-11-20 15:29:45 -0800
commit537e96747a7a7962a49fc68c3cc349c90646ac2f (patch)
tree1216e4d6fe0c42793f2afa616035c3027346ad11
parentafa717caf5bd6cbb90f5395e2642ffa679cac5be (diff)
version 1.3.2:1.3.2
Changes since 1.3.1: - Dependency updates only. This includes updating Clap to v4, which changes the format of the `b3sum --help` output. The new MSRV is 1.59.0 for `blake3` and 1.60.0 for `b3sum`. Note that this project doesn't have any particular MSRV policy, and we don't consider MSRV bumps to be breaking changes.
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock4
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--c/blake3.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c8212e7..e38ee5b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "1.3.1"
+version = "1.3.2"
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 a8246ab..0517b7e 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -39,7 +39,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "b3sum"
-version = "1.3.1"
+version = "1.3.2"
dependencies = [
"anyhow",
"blake3",
@@ -60,7 +60,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "blake3"
-version = "1.3.1"
+version = "1.3.2"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 9b43f0a..c6d1bf0 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.3.1"
+version = "1.3.2"
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/blake3.h b/c/blake3.h
index 7caf9b4..5f344f2 100644
--- a/c/blake3.h
+++ b/c/blake3.h
@@ -8,7 +8,7 @@
extern "C" {
#endif
-#define BLAKE3_VERSION_STRING "1.3.1"
+#define BLAKE3_VERSION_STRING "1.3.2"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64