diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/Cargo.lock | 4 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 4 | ||||
| -rw-r--r-- | c/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | c/blake3.h | 2 | ||||
| -rw-r--r-- | tools/release.md | 1 |
6 files changed, 8 insertions, 7 deletions
@@ -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 ) @@ -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. |
