Skip to content

Commit

Permalink
Release version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Nov 1, 2016
1 parent dd2be85 commit ee5b56e
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 3 deletions.
65 changes: 65 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,71 @@
Changelog
=========

0.13.0 (2016-11-01)
-------------------

- Support alternate git status output. [Jose Diaz-Gonzalez]

- Split warning test into new test file, added to travis execution on
2.6 / pypy3. [davidcellis]

- Remove hypothesis examples database from gitignore. [davidcellis]

- Add check for warning to tests. [davidcellis]

Reordered test imports


- Check processor and warn before scorer may remove processor.
[davidcellis]

- Renamed test - tidied docstring. [davidcellis]

- Add token ratios to the list of scorers that skip running full_process
as a processor. [davidcellis]

- Added tokex_sort, token_set to test. [davidcellis]

- Test docstrings/comments. [davidcellis]

Removed redundant check from test.


- Added py.test .cache/ removed duplicated build from gitignore.
[davidcellis]

- Added default_scorer, default_processor parameters to make it easier
to change in the future. [davidcellis]

Added warning if the processor reduces the input query to an empty string.


- Rewrote extracts to explicitly use default values for processor and
scorer. [davidcellis]

- Changed Hypothesis tests to use pytest parameters. [davidcellis]

- Added Hypothesis based tests for identical strings. [Ducksual]

Added support for hypothesis to travis config.
Hypothesis based tests are skipped on Python 2.6 and pypy3.

Added .hypothesis/ folder to gitignore


- Added test for simple 'a, b' string on process.extractOne. [Ducksual]

- Process the query in process.extractWithoutOrder when using a scorer
which does not do so. [Ducksual]

Closes 139


- Mention that difflib and levenshtein results may differ. [Jose Diaz-
Gonzalez]

Closes #128

0.12.0 (2016-09-14)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -27,13 +27,13 @@ Using PIP via Github

.. code:: bash
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.12.0#egg=fuzzywuzzy
pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.13.0#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.12.0#egg=fuzzywuzzy
git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.13.0#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.12.0'
__version__ = '0.13.0'

0 comments on commit ee5b56e

Please sign in to comment.