diff --git a/.gitignore b/.gitignore index 7bbc71c..0abf170 100644 --- a/.gitignore +++ b/.gitignore @@ -86,6 +86,7 @@ celerybeat-schedule .venv venv/ ENV/ +Pipfile* # Spyder project settings .spyderproject diff --git a/CHANGELOG.md b/CHANGELOG.md index 540d3e9..8a73bc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # pyspellchecker -## Version 0.6.1 (Future) +## Version 0.6.1 * Deprecated `spell.word_probability` since the name makes it seem that it is building a true probability; use `spell.word_usage_frequency` instead * Added Russian language dictionary; [#91](https://github.com/barrust/pyspellchecker/pull/91) Thanks [@sviperm](https://github.com/sviperm) * Include `__iter__` to both the `SpellChecker` and `WordFrequency` objects diff --git a/spellchecker/info.py b/spellchecker/info.py index f8ea545..63d6c31 100644 --- a/spellchecker/info.py +++ b/spellchecker/info.py @@ -5,7 +5,7 @@ __maintainer__ = "Tyler Barrus" __email__ = "barrust@gmail.com" __license__ = "MIT" -__version__ = "0.6.0" +__version__ = "0.6.1" __credits__ = ["Peter Norvig"] __url__ = "https://github.com/barrust/pyspellchecker" __bugtrack_url__ = "{0}/issues".format(__url__)