From 6c0b80a0c58b0abbf82941dcbe25e09f6487f86c Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Sat, 21 Sep 2024 18:28:37 +0200 Subject: [PATCH] update changelog --- CHANGELOG.rst | 15 ++++++++------- src/rapidfuzz/__init__.py | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7de15c31..7291b9a6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,13 +1,19 @@ Changelog --------- +[3.10.0] - 2024-09-21 +^^^^^^^^^^^^^^^^^^^^^ +Fixed +~~~~~ +- drop support for Python 3.8 +- switch build system to `scikit-build-core` + [3.9.7] - 2024-09-02 ^^^^^^^^^^^^^^^^^^^^ Fixed -~~~~~~~ +~~~~~ * fix crash in ``cdist`` due to Visual Studio upgrade - [3.9.6] - 2024-08-06 ^^^^^^^^^^^^^^^^^^^^ Changed @@ -41,14 +47,12 @@ Fixed ~~~~~ * fix supported versions of taskflow in cmake to be in the range v3.3 - v3.7 - [3.9.1] - 2024-05-19 ^^^^^^^^^^^^^^^^^^^^ Fixed ~~~~~ * disable AVX2 on MacOS since it did lead to illegal instructions being generated - [3.9.0] - 2024-05-02 ^^^^^^^^^^^^^^^^^^^^ Changed @@ -59,14 +63,12 @@ Fixed ~~~~~ * fix cmake version parsing - [3.8.1] - 2024-04-07 ^^^^^^^^^^^^^^^^^^^^ Fixed ~~~~~ * use the correct version of ``rapidfuzz-cpp`` when building against a system installed version - [3.8.0] - 2024-04-06 ^^^^^^^^^^^^^^^^^^^^ Added @@ -78,7 +80,6 @@ Fixed - fix some minor errors in the type hints - fix potentially incorrect results of JaroWinkler when using high prefix weights - [3.7.0] - 2024-03-21 ^^^^^^^^^^^^^^^^^^^^ Changed diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index 66e10fa8..63e5062a 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -6,7 +6,7 @@ __author__: str = "Max Bachmann" __license__: str = "MIT" -__version__: str = "3.9.7" +__version__: str = "3.10.0" from rapidfuzz import distance, fuzz, process, utils