From 2ec9be7d18f16c83d16b8ea137089e9142fe3564 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 19 Jul 2017 13:55:56 -0600 Subject: [PATCH] Release version 0.15.1 --- CHANGES.rst | 18 ++++++++++++++++++ README.rst | 4 ++-- fuzzywuzzy/__init__.py | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8b235fda..b0db2ef3 100644 --- a/CHANGES.rst +++ b/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) ------------------- diff --git a/README.rst b/README.rst index 7d05484b..db16756f 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py index 00d71b27..5b18ec2d 100644 --- a/fuzzywuzzy/__init__.py +++ b/fuzzywuzzy/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.15.0' +__version__ = '0.15.1'