diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 4 | ||||
| -rw-r--r-- | b3sum/README.md | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "blake3" -version = "0.1.4" +version = "0.2.0" authors = ["Jack O'Connor <[email protected]>"] description = "the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index aaa23e9..d5c869e 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.1.4" +version = "0.2.0" authors = ["Jack O'Connor <[email protected]>"] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" @@ -16,7 +16,7 @@ rayon = ["blake3/rayon", "memmap"] [dependencies] anyhow = "1.0.25" -blake3 = { version = "0.1", path = ".." } +blake3 = { version = "0.2", path = ".." } clap = { version = "2.33.0", default-features = false } hex = "0.4.0" memmap = { version = "0.7.0", optional = true } diff --git a/b3sum/README.md b/b3sum/README.md index cd1ff8e..7e9619d 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -1,7 +1,7 @@ # b3sum ``` -b3sum 0.1.4 +b3sum 0.2.0 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
