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

Commit ee5b56e

Browse files
committed
Release version 0.13.0
1 parent dd2be85 commit ee5b56e

File tree

3 files changed

+68
-3
lines changed

3 files changed

+68
-3
lines changed

CHANGES.rst

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

4+
0.13.0 (2016-11-01)
5+
-------------------
6+
7+
- Support alternate git status output. [Jose Diaz-Gonzalez]
8+
9+
- Split warning test into new test file, added to travis execution on
10+
2.6 / pypy3. [davidcellis]
11+
12+
- Remove hypothesis examples database from gitignore. [davidcellis]
13+
14+
- Add check for warning to tests. [davidcellis]
15+
16+
Reordered test imports
17+
18+
19+
- Check processor and warn before scorer may remove processor.
20+
[davidcellis]
21+
22+
- Renamed test - tidied docstring. [davidcellis]
23+
24+
- Add token ratios to the list of scorers that skip running full_process
25+
as a processor. [davidcellis]
26+
27+
- Added tokex_sort, token_set to test. [davidcellis]
28+
29+
- Test docstrings/comments. [davidcellis]
30+
31+
Removed redundant check from test.
32+
33+
34+
- Added py.test .cache/ removed duplicated build from gitignore.
35+
[davidcellis]
36+
37+
- Added default_scorer, default_processor parameters to make it easier
38+
to change in the future. [davidcellis]
39+
40+
Added warning if the processor reduces the input query to an empty string.
41+
42+
43+
- Rewrote extracts to explicitly use default values for processor and
44+
scorer. [davidcellis]
45+
46+
- Changed Hypothesis tests to use pytest parameters. [davidcellis]
47+
48+
- Added Hypothesis based tests for identical strings. [Ducksual]
49+
50+
Added support for hypothesis to travis config.
51+
Hypothesis based tests are skipped on Python 2.6 and pypy3.
52+
53+
Added .hypothesis/ folder to gitignore
54+
55+
56+
- Added test for simple 'a, b' string on process.extractOne. [Ducksual]
57+
58+
- Process the query in process.extractWithoutOrder when using a scorer
59+
which does not do so. [Ducksual]
60+
61+
Closes 139
62+
63+
64+
- Mention that difflib and levenshtein results may differ. [Jose Diaz-
65+
Gonzalez]
66+
67+
Closes #128
68+
469
0.12.0 (2016-09-14)
570
-------------------
671

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ Using PIP via Github
2727

2828
.. code:: bash
2929
30-
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.12.0#egg=fuzzywuzzy
30+
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.13.0#egg=fuzzywuzzy
3131
3232
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
3333

3434
.. code:: bash
3535
36-
git+ssh://[email protected]/seatgeek/fuzzywuzzy.git@0.12.0#egg=fuzzywuzzy
36+
git+ssh://[email protected]/seatgeek/fuzzywuzzy.git@0.13.0#egg=fuzzywuzzy
3737
3838
Manually via GIT
3939

fuzzywuzzy/__init__.py

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

0 commit comments

Comments
 (0)