From 30faa0d60a7c27b413afa9e207b3b67d5207d5d6 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Tue, 14 Jan 2025 12:58:03 +0100 Subject: [PATCH] upgrade version --- pyproject.toml | 2 +- src/Levenshtein/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 269f2a4..595180d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "scikit-build-core>=0.10.6", + "scikit-build-core>=0.10.7", "Cython>=3.0.11,<3.1.0" ] build-backend = "scikit_build_core.build" diff --git a/src/Levenshtein/__init__.py b/src/Levenshtein/__init__.py index 80ba944..ff2cee9 100644 --- a/src/Levenshtein/__init__.py +++ b/src/Levenshtein/__init__.py @@ -18,7 +18,7 @@ __author__: str = "Max Bachmann" __license__: str = "GPL" -__version__: str = "0.26.1" +__version__: str = "0.27.0" import rapidfuzz.distance.Hamming as _Hamming import rapidfuzz.distance.Indel as _Indel