Skip to content

Commit

Permalink
build: update version for release, update documentation for ignore_te…
Browse files Browse the repository at this point in the history
…rm_with_digits
  • Loading branch information
mammothb committed Nov 27, 2021
1 parent b8da113 commit 6ecc17e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG <br>
==============

## 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`
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
editdistpy==0.1.2rc3
editdistpy==0.1.2

# For testing
codecov==2.1.12
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion symspellpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.. moduleauthor:: Wolf Garbe <wolf.garbe@faroo.com>
"""

__version__ = "6.7.3rc1"
__version__ = "6.7.3"

import logging
import os
Expand Down
3 changes: 2 additions & 1 deletion symspellpy/symspellpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ecc17e

Please sign in to comment.