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

version 1.5.2

Changes since 1.5.1:
- `build.rs` sets `cc::Build::emit_rerun_if_env_changed(false)` to
  prevent some unnecessary rebuilds, particularly when the `PATH`
  changes on Windows. See #324.
- Serializing a `Hash` produces a bytestring instead of an array in
  formats that support bytestrings (like CBOR). Deserialization is
  backwards-compatible with the array format.
- Cleanup and edge case fixes in the C and CMake builds.
This commit is contained in:
Jack O'Connor 2024-07-12 09:50:13 -07:00
parent 0c456b7f49
commit 27cbd6bdd5
5 changed files with 6 additions and 6 deletions

View File

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

4
b3sum/Cargo.lock generated
View File

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

View File

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

View File

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

View File

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