From 1098ff2f3af5042ffa250f630d31d39107664248 Mon Sep 17 00:00:00 2001 From: mmb L Date: Thu, 2 Dec 2021 22:32:08 +0800 Subject: [PATCH] docs: update version and changelog --- CHANGELOG.md | 5 +++++ symspellpy/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40d3ac7..1c08758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG
============== +## 6.7.5 (2021-12-02) +--------------------- +- Fix `replaced_words` not being updated when best match is a combi (closes [#103](https://github.com/mammothb/symspellpy/issues/103)) +- Implement a way to change the edit distance comparer algorightm via `distance_algorithm` property. Available values are found in [`DistanceAlgorithm`](https://symspellpy.readthedocs.io/en/latest/api/editdistance.html#symspellpy.editdistance.DistanceAlgorithm) + ## 6.7.4 (2021-11-29) --------------------- - Update `editdistpy` dependency version diff --git a/symspellpy/__init__.py b/symspellpy/__init__.py index 6ca3af1..6e7ea85 100644 --- a/symspellpy/__init__.py +++ b/symspellpy/__init__.py @@ -19,7 +19,7 @@ .. moduleauthor:: Wolf Garbe """ -__version__ = "6.7.4" +__version__ = "6.7.5" import logging import os