Skip to content

Commit

Permalink
version 1.3.3
Browse files Browse the repository at this point in the history
Changes since 1.3.2:
- Fix incorrect output from AVX-512 intrinsics under GCC 5.4 and 6.1 in
  debug mode. This bug was found in unit tests and probably doesn't
  affect the public API in practice. See
  #271.
  • Loading branch information
oconnor663 committed Nov 26, 2022
1 parent 342f9f8 commit 67e4d04
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
version = "1.3.2"
version = "1.3.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>", "Samuel Neves"]
description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
Expand Down
96 changes: 68 additions & 28 deletions b3sum/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
version = "1.3.2"
version = "1.3.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
Expand Down
2 changes: 1 addition & 1 deletion c/blake3.h
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#define BLAKE3_VERSION_STRING "1.3.2"
#define BLAKE3_VERSION_STRING "1.3.3"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64
Expand Down

0 comments on commit 67e4d04

Please sign in to comment.