From 2d07081c2633d5f14cbb1f3e2bb15a76e2b3e3e5 Mon Sep 17 00:00:00 2001 From: mmb L <7960706+mammothb@users.noreply.github.com> Date: Sat, 31 Aug 2024 22:09:56 +0800 Subject: [PATCH] v6.7.8 --- CHANGELOG.md | 6 ++++++ symspellpy/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f41e858..231e62f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG
============== +## 6.7.8 (2024-08-31) +- Handle encoding errors [#149](https://github.com/mammothb/symspellpy/pull/149) +- Bump supported Python version to 3.8 - 3.12 [#151](https://github.com/mammothb/symspellpy/pull/151) +- Remove numpy dependency [#156](https://github.com/mammothb/symspellpy/pull/156) +- Feature: distance comparer interface [#159](https://github.com/mammothb/symspellpy/pull/159) + ## 6.7.7 (2022-10-24) - Remove support for Python 3.6 - Use compiled regex expression in `create_dictionary()` ([#129](https://github.com/mammothb/symspellpy/pull/129)) diff --git a/symspellpy/__init__.py b/symspellpy/__init__.py index f4b9455..2e90845 100644 --- a/symspellpy/__init__.py +++ b/symspellpy/__init__.py @@ -19,7 +19,7 @@ .. moduleauthor:: Wolf Garbe """ -__version__ = "6.7.8-rc1" +__version__ = "6.7.8" from . import editdistance, helpers, logging from .symspellpy import SymSpell