1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-09-16 19:41:44 +02:00

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.
This commit is contained in:
Jack O'Connor 2024-07-14 21:57:22 -07:00
parent 2ce9b51993
commit acaeabeff3
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "blake3" name = "blake3"
version = "1.5.2" version = "1.5.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>", "Samuel Neves"] authors = ["Jack O'Connor <oconnor663@gmail.com>", "Samuel Neves"]
description = "the BLAKE3 hash function" description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3" repository = "https://github.com/BLAKE3-team/BLAKE3"

4
b3sum/Cargo.lock generated
View File

@ -71,7 +71,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]] [[package]]
name = "b3sum" name = "b3sum"
version = "1.5.2" version = "1.5.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"blake3", "blake3",
@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "1.5.2" version = "1.5.3"
dependencies = [ dependencies = [
"arrayref", "arrayref",
"arrayvec", "arrayvec",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "b3sum" name = "b3sum"
version = "1.5.2" version = "1.5.3"
authors = ["Jack O'Connor <oconnor663@gmail.com>"] authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "a command line implementation of the BLAKE3 hash function" description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3" repository = "https://github.com/BLAKE3-team/BLAKE3"

View File

@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif() endif()
project(libblake3 project(libblake3
VERSION 1.5.2 VERSION 1.5.3
DESCRIPTION "BLAKE3 C implementation" DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C ASM LANGUAGES C ASM
) )

View File

@ -30,7 +30,7 @@
extern "C" { extern "C" {
#endif #endif
#define BLAKE3_VERSION_STRING "1.5.2" #define BLAKE3_VERSION_STRING "1.5.3"
#define BLAKE3_KEY_LEN 32 #define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32 #define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64 #define BLAKE3_BLOCK_LEN 64