Skip to content

Commit

Permalink
Release version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Nov 16, 2015
1 parent 7051741 commit 8679c17
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 3 deletions.
42 changes: 42 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,48 @@
Changelog
=========

0.8.0 (2015-11-16)
------------------

- Refer to Levenshtein distance in readme. Closes #88. [Jose Diaz-
Gonzalez]

- Added install step for travis to have pep8 available. [Pedro
Rodrigues]

- Added a pep8 test. The way I add the error 501 to the ignore tuple is
probably wrong but from the docs and source code of pep8 I could not
find any other way. [Pedro Rodrigues]

I also went ahead and removed the pep8 call from the release file.


- Added python 3.5, pypy, and ypyp3 to the travis config file. [Pedro
Rodrigues]

- Added another step to the release file to run the tests before
releasing. [Pedro Rodrigues]

- Fixed a few pep8 errors Added a verification step in the release
automation file. This step should probably be somewhere at git level.
[Pedro Rodrigues]

- Pep8. [Pedro Rodrigues]

- Leaving TODOs in the code was never a good idea. [Pedro Rodrigues]

- Changed return values to be rounded integers. [Pedro Rodrigues]

- Added a test with the recovered data file. [Pedro Rodrigues]

- Recovered titledata.csv. [Pedro Rodrigues]

- Move extract test methods into the process test. [Shale Craig]

Somehow, they ended up in the `RatioTest`, despite asserting that the
`ProcessTest` works.


0.7.0 (2015-10-02)
------------------

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

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

0 comments on commit 8679c17

Please sign in to comment.