Skip to content

Commit

Permalink
version 0.12.1
Browse files Browse the repository at this point in the history
Changes since 0.12.0:
- BUGFIX: Fixed mishandling of empty slices in `Encoder::write`.
  Previously writing exactly 1024 bytes, and then calling `write` once
  more with an empty slice, would lead to an incorrect hash returned
  from `Encoder::finalize`. (The chunk should've been finalized as root,
  but instead it was finalized as non-root.)
  • Loading branch information
oconnor663 committed Jul 14, 2022
1 parent 431882d commit 990df23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bao"
version = "0.12.0"
version = "0.12.1"
authors = ["Jack O'Connor"]
description = "an implementation of BLAKE3 verified streaming"
license = "CC0-1.0 OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion bao_bin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bao_bin"
version = "0.12.0"
version = "0.12.1"
authors = ["Jack O'Connor"]
description = "the command line utility that's part of the bao crate"
license = "CC0-1.0 OR Apache-2.0"
Expand Down

0 comments on commit 990df23

Please sign in to comment.