diff --git a/CHANGELOG.md b/CHANGELOG.md index fade882..744f477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG
============== +## 6.7.3 (2021-11-27) +--------------------- +- Update `editdistpy` dependency version + ## 6.7.2 (2021-11-25) --------------------- - Fix typo of Dameruau to Damerau in various places. Can potentially break some setups that explicitly `_distance_algorithm` diff --git a/docs/requirements.txt b/docs/requirements.txt index 5464e42..11bd25e 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -editdistpy==0.1.2rc3 +editdistpy==0.1.2 numpydoc==1.1.0 sphinx==4.3.0 sphinx-autodoc-typehints==1.12.0 diff --git a/requirements.txt b/requirements.txt index 578078a..ce9bc66 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -editdistpy==0.1.2rc3 +editdistpy==0.1.2 # For testing codecov==2.1.12 diff --git a/setup.cfg b/setup.cfg index 9c6e284..5298b82 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,7 +29,7 @@ include_package_data = True packages = find: python_requires = >=3.6 install_requires = - editdistpy==0.1.2rc3 + editdistpy==0.1.2 [options.package_data] symspellpy = frequency_*.txt diff --git a/symspellpy/__init__.py b/symspellpy/__init__.py index e825b28..657d17d 100644 --- a/symspellpy/__init__.py +++ b/symspellpy/__init__.py @@ -19,7 +19,7 @@ .. moduleauthor:: Wolf Garbe """ -__version__ = "6.7.3rc1" +__version__ = "6.7.3" import logging import os diff --git a/symspellpy/symspellpy.py b/symspellpy/symspellpy.py index 51ced38..17df3ba 100644 --- a/symspellpy/symspellpy.py +++ b/symspellpy/symspellpy.py @@ -629,7 +629,8 @@ def lookup_compound( uppercase vs lowercase --- should be carried over from `phrase`. split_by_space: Splits the phrase into words simply based on space. ignore_any_term_with_digits: A flag to determine whether any term - with digits is left alone during the spell checking process. + with digits is left alone during the spell checking process. Only + works when ``ignore_non_words` is also ``True``. Returns: A list of :class:`SuggestItem` objects representing suggested correct