summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2020-04-02 10:02:27 -0400
committerJack O'Connor <oconnor663@gmail.com>2020-04-02 10:08:47 -0400
commit5e82396d80df7b8655ed17e39f1fadedf3a78e79 (patch)
treec3d709d29a8db696f5d8441173c97264f51a7df4
parentb8cdcb1f84cf794c7072bbfaacac71f6a5857e3c (diff)
version 0.3.10.3.1
Changes since 0.3.0: - The x86 build now automatically falls back to "pure" Rust intrinsics, under either of two possible conditions: 1. The `cc` crate fails to invoke a C compiler at all, indicating that nothing of the right name (e.g. "cc" or "$CC" on Unix) is installed. 2. The `cc` crate detects that the compiler doesn't support AVX-512 flags, usually because it's too old. The end result should be that most callers successfully build the assembly implementations, and that callers who can't build those see a warning but not an error. (And note that Cargo suppresses warnings for non-path depencies.)
-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 c3d0a0b..9075a6b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "0.3.0"
+version = "0.3.1"
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 beca7f4..dbce6bd 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "0.3.0"
+version = "0.3.1"
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 ded5595..8856152 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.3.0
+b3sum 0.3.1
USAGE:
b3sum [FLAGS] [OPTIONS] [file]...