Skip to content

Commit

Permalink
version 1.5.5
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
oconnor663 committed Nov 27, 2024
1 parent c57d6b6 commit 81f772a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blake3"
version = "1.5.4"
version = "1.5.5"
authors = ["Jack O'Connor <oconnor663@gmail.com>", "Samuel Neves"]
description = "the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"
Expand Down
8 changes: 4 additions & 4 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
version = "1.5.4"
version = "1.5.5"
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/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (POLICY CMP0102)
endif()

project(libblake3
VERSION 1.5.4
VERSION 1.5.5
DESCRIPTION "BLAKE3 C implementation"
LANGUAGES C ASM
)
Expand Down
2 changes: 1 addition & 1 deletion c/blake3.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
extern "C" {
#endif

#define BLAKE3_VERSION_STRING "1.5.4"
#define BLAKE3_VERSION_STRING "1.5.5"
#define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64
Expand Down

0 comments on commit 81f772a

Please sign in to comment.