diff --git a/CHANGES.rst b/CHANGES.rst index a0cada37..fd4fa9ab 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Changelog ========= +0.11.1 (2016-07-27) +------------------- + +- Add editorconfig. [Jose Diaz-Gonzalez] + +- Added tox.ini cofig file for easy local multi-environment testing + changed travis config to use py.test like tox updated use of pep8 + module to pycodestyle. [Pedro Rodrigues] + 0.11.0 (2016-06-30) ------------------- diff --git a/README.rst b/README.rst index 3e351786..b4b2c659 100644 --- a/README.rst +++ b/README.rst @@ -27,13 +27,13 @@ Using PIP via Github .. code:: bash - pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.0#egg=fuzzywuzzy + pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.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.11.0#egg=fuzzywuzzy + git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.11.1#egg=fuzzywuzzy Manually via GIT diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py index a52f1c2a..c690c91a 100644 --- a/fuzzywuzzy/__init__.py +++ b/fuzzywuzzy/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.11.0' +__version__ = '0.11.1'