diff --git a/CHANGES.rst b/CHANGES.rst index 315c6c4e..8b235fda 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,29 @@ Changelog ========= +0.15.0 (2017-02-20) +------------------- + +- Add extras require to install python-levenshtein optionally. [Rolando + Espinoza] + + This allows to install python-levenshtein as dependency. + + +- Fix link formatting in the README. [Alex Chan] + +- Add fuzzball.js JavaScript port link. [nolan] + +- Added Rust Port link. [Logan Collins] + +- Validate_string docstring. [davidcellis] + +- For full comparisons test that ONLY exact matches (after processing) + are added. [davidcellis] + +- Add detailed docstrings to WRatio and QRatio comparisons. + [davidcellis] + 0.14.0 (2016-11-04) ------------------- diff --git a/README.rst b/README.rst index 1c43d5b1..7d05484b 100644 --- a/README.rst +++ b/README.rst @@ -34,13 +34,13 @@ Using PIP via Github .. code:: bash - pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.14.0#egg=fuzzywuzzy + pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.0#egg=fuzzywuzzy Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards) .. code:: bash - git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.14.0#egg=fuzzywuzzy + git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.0#egg=fuzzywuzzy Manually via GIT diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py index c25929fa..00d71b27 100644 --- a/fuzzywuzzy/__init__.py +++ b/fuzzywuzzy/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.14.0' +__version__ = '0.15.0'