This repository was archived by the owner on Aug 26, 2024. It is now read-only.
File tree 3 files changed +40
-3
lines changed
3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
41
0.15.1 (2017-07-19)
5
42
-------------------
6
43
Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ Using PIP via Github
34
34
35
35
.. code :: bash
36
36
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
38
38
39
39
Adding to your ``requirements.txt `` file (run ``pip install -r requirements.txt `` afterwards)
40
40
41
41
.. code :: bash
42
42
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
44
44
45
45
Manually via GIT
46
46
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- __version__ = '0.15.1 '
2
+ __version__ = '0.16.0 '
You can’t perform that action at this time.
0 commit comments