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

Commit 2df7b43

Browse files
committed
Release version 0.15.0
1 parent 919e365 commit 2df7b43

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGES.rst

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

4+
0.15.0 (2017-02-20)
5+
-------------------
6+
7+
- Add extras require to install python-levenshtein optionally. [Rolando
8+
Espinoza]
9+
10+
This allows to install python-levenshtein as dependency.
11+
12+
13+
- Fix link formatting in the README. [Alex Chan]
14+
15+
- Add fuzzball.js JavaScript port link. [nolan]
16+
17+
- Added Rust Port link. [Logan Collins]
18+
19+
- Validate_string docstring. [davidcellis]
20+
21+
- For full comparisons test that ONLY exact matches (after processing)
22+
are added. [davidcellis]
23+
24+
- Add detailed docstrings to WRatio and QRatio comparisons.
25+
[davidcellis]
26+
427
0.14.0 (2016-11-04)
528
-------------------
629

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.14.0#egg=fuzzywuzzy
37+
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.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.14.0#egg=fuzzywuzzy
43+
git+ssh://[email protected]/seatgeek/fuzzywuzzy.git@0.15.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.14.0'
2+
__version__ = '0.15.0'

0 commit comments

Comments
 (0)