aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--b3sum/README.md6
3 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 720e9a4..ac98f62 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "0.3.4"
+version = "0.3.5"
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 56ed381..53cffa4 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "0.3.4"
+version = "0.3.5"
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 7bf8f90..29aa120 100644
--- a/b3sum/README.md
+++ b/b3sum/README.md
@@ -5,10 +5,10 @@ A command line utility for calculating
Coreutils tools like `b2sum` or `md5sum`.
```
-b3sum 0.3.4
+b3sum 0.3.5
USAGE:
- b3sum [FLAGS] [OPTIONS] [file]...
+ b3sum [FLAGS] [OPTIONS] [FILE]...
FLAGS:
-c, --check Reads BLAKE3 sums from the [file]s and checks them
@@ -36,7 +36,7 @@ OPTIONS:
RAYON_NUM_THREADS is also respected.
ARGS:
- <file>... Files to hash, or checkfiles to check. When no file is given,
+ <FILE>... Files to hash, or checkfiles to check. When no file is given,
or when - is given, read standard input.
```