Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit e0f2b0d

Browse files
committed
Release version 0.16.0
1 parent 61574c9 commit e0f2b0d

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

CHANGES.rst

+37
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
Changelog
22
=========
33

4+
0.16.0 (2017-12-18)
5+
-------------------
6+
7+
- Add punctuation characters back in so process does something.
8+
[davidcellis]
9+
10+
- Simpler alphabet and even fewer examples. [davidcellis]
11+
12+
- Fewer examples and larger deadlines for Hypothesis. [davidcellis]
13+
14+
- Slightly more examples. [davidcellis]
15+
16+
- Attempt to fix the failing 2.7 and 3.6 python tests. [davidcellis]
17+
18+
- Readme: add link to C++ port. [Lizard]
19+
20+
- Fix tests on Python 3.3. [Jon Banafato]
21+
22+
Modify tox.ini and .travis.yml to install enum34 when running with
23+
Python 3.3 to allow hypothesis tests to pass.
24+
25+
26+
- Normalize Python versions. [Jon Banafato]
27+
28+
- Enable Travis-CI tests for Python 3.6
29+
- Enable tests for all supported Python versions in tox.ini
30+
- Add Trove classifiers for Python 3.4 - 3.6 to setup.py
31+
32+
---
33+
34+
Note: Python 2.6 and 3.3 are no longer supported by the Python core
35+
team. Support for these can likely be dropped, but that's out of scope
36+
for this change set.
37+
38+
39+
- Fix typos. [Sven-Hendrik Haase]
40+
441
0.15.1 (2017-07-19)
542
-------------------
643

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ Using PIP via Github
3434

3535
.. code:: bash
3636
37-
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
37+
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
3838
3939
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
4040

4141
.. code:: bash
4242
43-
git+ssh://[email protected]/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
43+
git+ssh://[email protected]/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
4444
4545
Manually via GIT
4646

fuzzywuzzy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '0.15.1'
2+
__version__ = '0.16.0'

0 commit comments

Comments
 (0)