summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2020-02-10 15:54:12 -0500
committerJack O'Connor <oconnor663@gmail.com>2020-02-10 16:00:37 -0500
commit30671b1c050d61f48d1d9c14c94766a569ac250a (patch)
treedd593376f741958b1c9586c1ca561ddd8826e769
parente43a7d68bc5a708c5cede660c843eb613c7d0013 (diff)
version 0.1.50.1.5
Changes since 0.1.4: - Remove all AVX-512 code from builds with the default feature set. This works around https://github.com/rust-lang/rust/issues/68905 and fixes the nightly build as long as the "c_avx512" feature is not activated. This release is a backport of a single commit, e43a7d6. The master branch contains backwards-incompatible changes (fc219f4), and the next release of master will be version 0.2.0. Note that the `b3sum` crate activates the "c_avx512" feature by default, and it will continue to fail to build on nightly until the upstream bug is fixed.
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--b3sum/README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3324d7f..6660761 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "0.1.4"
+version = "0.1.5"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index c4c8068..441f918 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "0.1.4"
+version = "0.1.5"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
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 cd1ff8e..0495c71 100644
--- a/b3sum/README.md
+++ b/b3sum/README.md
@@ -1,7 +1,7 @@
# b3sum
```
-b3sum 0.1.4
+b3sum 0.1.5
USAGE:
b3sum [FLAGS] [OPTIONS] [file]...