diff options
| author | Jack O'Connor <[email protected]> | 2020-02-25 12:11:52 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-02-25 12:15:27 -0500 |
| commit | c197a773ac0f7b2e33a116cf958882f7694cf717 (patch) | |
| tree | b5934e94868e38cc21a991f81d2f3e10c6fb5afa | |
| parent | 8d84cfc0af863086b38982cb23a17657f1dd973a (diff) | |
version 0.2.20.2.2
Changes since 0.2.1 (and since c-0.2.0):
- Fix a performance issue when the caller makes multiple calls to
update() with uneven lengths. (#69, reported by @willbryant.)
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/README.md | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "blake3" -version = "0.2.1" +version = "0.2.2" 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 7339d8f..d930c19 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.2.1" +version = "0.2.2" authors = ["Jack O'Connor <[email protected]>"] 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 80f5067..8e9d8a4 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 0.2.1 +b3sum 0.2.2 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
