diff options
| author | Jack O'Connor <[email protected]> | 2024-11-26 18:16:20 -0800 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2024-11-26 18:16:20 -0800 |
| commit | 81f772a4cd70dc0325047a6a737d2f6f4b92180e (patch) | |
| tree | 627b465ce6641e7f8dd0b5bdd9c1ada2d23f380a /c | |
| parent | c57d6b6ac25a08360f0adf82f7bbe87156a5fec0 (diff) | |
version 1.5.51.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.
Diffstat (limited to 'c')
| -rw-r--r-- | c/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | c/blake3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt index b83abee..ebcca1d 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -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 ) @@ -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 |
