From f92d4ca9e709b05bd8c2ffc1c5fa4ae89f4df29e Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Sun, 30 Nov 2025 21:53:45 -0800 Subject: [PATCH] OpenSlide Python 1.4.3 Signed-off-by: Benjamin Gilbert --- CHANGELOG.md | 15 +++++++++++++++ openslide/_version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fae3f13..c85dae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Notable Changes in OpenSlide Python +## Version 1.4.3, 2025-12-03 + +### New features + +* Support [free-threaded Python][free-thread] + +### Changes + +* Drop support for Python 3.9 +* Switch extension module to [multi-phase initialization][multi-phase-init] + +[free-thread]: https://docs.python.org/3/howto/free-threading-python.html +[multi-phase-init]: https://peps.python.org/pep-0489/ + + ## Version 1.4.2, 2025-04-28 ### Changes diff --git a/openslide/_version.py b/openslide/_version.py index 2132424..94ae38a 100644 --- a/openslide/_version.py +++ b/openslide/_version.py @@ -21,4 +21,4 @@ This module is an implementation detail. The package version should be obtained from openslide.__version__.""" -__version__ = '1.4.2' +__version__ = '1.4.3'