diff options
| author | Jack O'Connor <[email protected]> | 2020-03-29 01:06:57 -0400 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-03-29 01:44:00 -0400 |
| commit | 7caf1ad4bbb0c801b33b63a8ce858db47fe4872f (patch) | |
| tree | faabec82f7e6fe3130046d83150e6a69dba2598a | |
| parent | 5fad419a8d9413bb0719e0502765556ab3f96865 (diff) | |
version 0.2.30.2.3
Changes since version 0.2.2:
- Bug fix: Commit 13556be fixes a crash on Windows when using the SSE4.1
assembly implementation (--features=c, set by default for b3sum). This
is undefined behavior and therefore a potential security issue.
- b3sum now supports the --num-threads flag.
- The C API now includes a blake3_hasher_finalize_seek() function, which
returns output from any position in the extended output stream.
- Build fix: Commit 5fad419 fixes a compiler error in the AVX-512 C
intrinsics implementation targeting the Windows GNU ABI.
| -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.2" +version = "0.2.3" 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 fa77fe9..a8b83f4 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.2.2" +version = "0.2.3" 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 92d5d93..d20ec94 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.2 +b3sum 0.2.3 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
