1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2026-03-07 15:46:24 +01:00
BLAKE3/tools/release.md
Jack O'Connor 8b829b697f version 1.8.3
Changes since 1.8.2:
- Add `Hash::as_slice`.
- Update to the 2024 Edition and bump the MSRV to 1.85.
- Fix a set of Miri failures in the intrinsics implementations. We were
  computing (though not dereferencing) an out-of-bounds pointer using
  `add` rather than `wrapping_add`. I'm not aware of any observable
  consequences of this bug. See https://github.com/BLAKE3-team/BLAKE3/pull/507.
- CPU feature detection on x86/x86-64 no longer requires the `std` Cargo
  feature in the `blake3` crate.
- Build fixes in the C implementation for macOS and Cygwin, and various
  improvements to the CMake build.
2026-01-08 09:17:29 -08:00

698 B

Release checklist

  • Make sure cargo outdated -R is clean in the root and in b3sum/.
  • Bump the version in the root Cargo.toml.
  • Bump the version in b3sum/Cargo.toml.
    • Bump the dependency on the root crate too, if new features are used.
  • Delete b3sum/Cargo.lock and recreate it with cargo build or similar.
  • Update the -h output in b3sum/README.md if it's changed.
  • Bump BLAKE3_VERSION_STRING in c/blake3.h.
  • Bump VERSION in c/CMakeLists.txt.
  • Make a version bump commit with change notes.
  • git push and make sure CI is green.
  • git tag the version bump commit with the new version number.
  • git push --tags
  • cargo publish in the root.
  • cargo publish in b3sum/.