From c573ca5e36a02126f0345a10da420e50447eb760 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Thu, 28 Nov 2024 21:26:42 -0800 Subject: [PATCH] version 1.0.0 Changes since 0.4.1: - The public API hasn't changed for a long time, so the main purpose of this release is to "officially" stabilize it as-is. - Prebuilt binaries are now published for more platforms, particularly AArch64. Thanks to @ddelange for implementing this. - `blake3.pyi` (static typing stubs) now uses `collections.abc.Buffer` for bytes-like arguments. This is more correct and more permissive, but it means that static typechecking requires Python 3.12+. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bd247fb..071e538 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.4.1" +version = "1.0.0" authors = ["Jack O'Connor "] description = "Python bindings for the Rust blake3 crate" repository = "https://github.com/oconnor663/blake3-py"