diff --git a/Cargo.toml b/Cargo.toml index b2d8d0c..e860f6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3" -version = "1.0.0" +version = "1.1.0" authors = ["Jack O'Connor "] description = "the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 344cf80..7e3c31a 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.0.0" +version = "1.1.0" authors = ["Jack O'Connor "] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/README.md b/b3sum/README.md index c6376a7..b3954a5 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -5,7 +5,7 @@ A command line utility for calculating Coreutils tools like `b2sum` or `md5sum`. ``` -b3sum 1.0.0 +b3sum 1.1.0 USAGE: b3sum [FLAGS] [OPTIONS] [FILE]... diff --git a/c/blake3.h b/c/blake3.h index 5eacf18..74a96c0 100644 --- a/c/blake3.h +++ b/c/blake3.h @@ -8,7 +8,7 @@ extern "C" { #endif -#define BLAKE3_VERSION_STRING "1.0.0" +#define BLAKE3_VERSION_STRING "1.1.0" #define BLAKE3_KEY_LEN 32 #define BLAKE3_OUT_LEN 32 #define BLAKE3_BLOCK_LEN 64