Skip to content

Commit acaeabe

Browse files
committed
version 1.5.3
Changes since 1.5.2: - Revert the serialization change. It was intended to be backwards compatible, but that didn't hold for non-self-describing serialization formats like bincode. See #414.
1 parent 2ce9b51 commit acaeabe

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.2"
3+
version = "1.5.3"
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

+2-2
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.2"
3+
version = "1.5.3"
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.2
13+
VERSION 1.5.3
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.2"
33+
#define BLAKE3_VERSION_STRING "1.5.3"
3434
#define BLAKE3_KEY_LEN 32
3535
#define BLAKE3_OUT_LEN 32
3636
#define BLAKE3_BLOCK_LEN 64

0 commit comments

Comments
 (0)