Skip to content

Commit

Permalink
Release version 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Dec 18, 2017
1 parent 61574c9 commit e0f2b0d
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions 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)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion fuzzywuzzy/__init__.py
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.15.1'
__version__ = '0.16.0'

0 comments on commit e0f2b0d

Please sign in to comment.