diff --git a/Cargo.toml b/Cargo.toml index c8212e733..e38ee5b92 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 ", "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 a8246ab18..0517b7ed7 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 9b43f0a95..c6d1bf09a 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 "] 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 7caf9b4b5..5f344f24b 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