diff options
| author | Jack O'Connor <[email protected]> | 2020-02-03 12:03:38 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-02-03 12:05:26 -0500 |
| commit | 0de44128848a7c8747e4bd1615b4569454758d99 (patch) | |
| tree | 34bcb84ef9df6d5711c6f9600790d75e82e3698b | |
| parent | 0651736ff45ba030a4933bf6f9cc5f38f8e87b19 (diff) | |
version 0.1.40.1.4
Changes since 0.1.3:
- Hasher supports the reset() method.
- Hasher implements several traits from the `digest` and `crypto_mac`
crates.
- Bug fixes in the C implementation for MSVC and for 32-bit x86.
| -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.1.3" +version = "0.1.4" 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 8a1df06..c4c8068 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.1.3" +version = "0.1.4" 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 b2d7c68..cd1ff8e 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -1,7 +1,7 @@ # b3sum ``` -b3sum 0.1.3 +b3sum 0.1.4 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
