diff options
| author | Jack O'Connor <[email protected]> | 2020-02-12 14:41:24 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-02-12 14:57:57 -0500 |
| commit | afdaf3036b385a234fa87dbca31c0f4634e604fa (patch) | |
| tree | 961bc14d72ca00bfa1c439caae5cef89877c4731 | |
| parent | 724e784fe268a81ad6b424517a0e173ace719461 (diff) | |
version 0.2.00.2.0
Changes since 0.1.5:
- The `c_avx512` feature has been replaced by the `c` feature. In
addition to providing AVX-512 support, `c` also provides optimized
assembly implementations. These assembly implementations perform
better, perform more consistently across compilers, and compile more
quickly. As before, `c` is off by default, but the `b3sum` binary
crate activates it by default.
- The `rayon` feature no longer affects the entire API. Instead, it
provides the `join::RayonJoin` type for use with
`Hasher::update_with_join`, so that the caller can control when
multi-threading happens. Standalone API functions like `hash` are
always single-threaded now.
| -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]... |
