From 806fbed0c92455e15d99039d8fd974e49beaf845 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Tue, 20 Dec 2022 10:51:18 -0800 Subject: [PATCH] version 0.3.3 Changes since 0.3.2: - Change `blake3.__module__` from "blake3" to "blake3.blake3". This is the correct canonical path, related to some Maturin implementation details. This is intended to help tooling that relies on canonical paths, but most regular callers don't need to worry about this. See https://github.com/mkdocstrings/mkdocstrings/issues/451 for an example of a tool that needs to know this. - Update PyO3 to v0.17. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 964854e..276797d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.3.2" +version = "0.3.3" authors = ["Jack O'Connor "] description = "Python bindings for the Rust blake3 crate" repository = "https://github.com/oconnor663/blake3-py"