diff --git a/CHANGES.rst b/CHANGES.rst index b0db2ef3..4bbed023 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,43 @@ Changelog ========= +0.16.0 (2017-12-18) +------------------- + +- Add punctuation characters back in so process does something. + [davidcellis] + +- Simpler alphabet and even fewer examples. [davidcellis] + +- Fewer examples and larger deadlines for Hypothesis. [davidcellis] + +- Slightly more examples. [davidcellis] + +- Attempt to fix the failing 2.7 and 3.6 python tests. [davidcellis] + +- Readme: add link to C++ port. [Lizard] + +- Fix tests on Python 3.3. [Jon Banafato] + + Modify tox.ini and .travis.yml to install enum34 when running with + Python 3.3 to allow hypothesis tests to pass. + + +- Normalize Python versions. [Jon Banafato] + + - Enable Travis-CI tests for Python 3.6 + - Enable tests for all supported Python versions in tox.ini + - Add Trove classifiers for Python 3.4 - 3.6 to setup.py + + --- + + Note: Python 2.6 and 3.3 are no longer supported by the Python core + team. Support for these can likely be dropped, but that's out of scope + for this change set. + + +- Fix typos. [Sven-Hendrik Haase] + 0.15.1 (2017-07-19) ------------------- diff --git a/README.rst b/README.rst index 376ad2ab..601fa0c6 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.15.1#egg=fuzzywuzzy + pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.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.15.1#egg=fuzzywuzzy + git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy Manually via GIT diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py index 5b18ec2d..8e23ba94 100644 --- a/fuzzywuzzy/__init__.py +++ b/fuzzywuzzy/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.15.1' +__version__ = '0.16.0'