Skip to content

Commit

Permalink
version 0.2.0
Browse files Browse the repository at this point in the history
Changes since 0.1.8:
- Rename the "context" keyword argument to "derive_key_context" for
  clarity.
- Upgrade PyO3 to 0.14, which raises the minimum supported Python
  version to 3.6.
- The blake3.OUT_LEN and blake3.KEY_LEN module constants have been
  replaced with "digest_size" and "key_size" attributes on the hasher
  object itself. This is more consistent with how the standard hashlib
  module behaves. A "block_size" attribute has also been added.
- Add the blake3.__version__ module constant.
- Add the "neon" Cargo feature, which maps to the "neon" feature of the
  underlying blake3 crate.
  • Loading branch information
oconnor663 committed Jul 18, 2021
1 parent 034c568 commit a5e4dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# PyPI. Installing this with `pip install blake3` is better than something
# redundant like `pip install PyBLAKE3-py`.
name = "blake3"
version = "0.1.8"
version = "0.2.0"
authors = ["Jack O'Connor <[email protected]>"]
description = "Python bindings for the Rust blake3 crate"
repository = "https://github.com/oconnor663/blake3-py"
Expand Down

0 comments on commit a5e4dce

Please sign in to comment.