Skip to content

Commit 81f772a

Browse files
committed
version 1.5.5
Changes since 1.5.4: - `b3sum --check` now supports checkfiles with Windows-style newlines. `b3sum` still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them. - The "digest" feature (deleted in v1.5.2) has been added back to the `blake3` crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature.
1 parent c57d6b6 commit 81f772a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blake3"
3-
version = "1.5.4"
3+
version = "1.5.5"
44
authors = ["Jack O'Connor <[email protected]>", "Samuel Neves"]
55
description = "the BLAKE3 hash function"
66
repository = "https://github.com/BLAKE3-team/BLAKE3"

b3sum/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

b3sum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "b3sum"
3-
version = "1.5.4"
3+
version = "1.5.5"
44
authors = ["Jack O'Connor <[email protected]>"]
55
description = "a command line implementation of the BLAKE3 hash function"
66
repository = "https://github.com/BLAKE3-team/BLAKE3"

c/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (POLICY CMP0102)
1010
endif()
1111

1212
project(libblake3
13-
VERSION 1.5.4
13+
VERSION 1.5.5
1414
DESCRIPTION "BLAKE3 C implementation"
1515
LANGUAGES C ASM
1616
)

c/blake3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
extern "C" {
3131
#endif
3232

33-
#define BLAKE3_VERSION_STRING "1.5.4"
33+
#define BLAKE3_VERSION_STRING "1.5.5"
3434
#define BLAKE3_KEY_LEN 32
3535
#define BLAKE3_OUT_LEN 32
3636
#define BLAKE3_BLOCK_LEN 64

0 commit comments

Comments
 (0)