Skip to content

Commit

Permalink
Release version 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jul 19, 2017
1 parent db823ed commit 2ec9be7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,24 @@
Changelog
=========

0.15.1 (2017-07-19)
-------------------

- Fix setup.py (addresses #155) [Paul O'Leary McCann]

- Merge remote-tracking branch 'upstream/master' into
extract_optimizations. [nolan]

- Seed random before generating benchmark strings. [nolan]

- Cleaner implementation of same idea without new param, but adding
existing full_process param to Q,W,UQ,UW. [nolan]

- Fix benchmark only generate list once. [nolan]

- Only run util.full_process once on query when using extract functions,
add new benchmarks. [nolan]

0.15.0 (2017-02-20)
-------------------

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.0#egg=fuzzywuzzy
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#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.0#egg=fuzzywuzzy
git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.1#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.0'
__version__ = '0.15.1'

2 comments on commit 2ec9be7

@polyzen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.14.0 is marked as the latest release.

@josegonzalez
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated the latest github release.

Please sign in to comment.