Skip to content

Commit

Permalink
bump version to 5.1.1 and update the CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Speer committed May 15, 2017
1 parent e80b722 commit 832651c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Version 5.1.1 and 4.4.3 (May 15, 2017)

These releases fix two unrelated problems with the tests, one in each version.

- v5.1.1: fixed the CLI tests (which are new in v5) so that they pass
on Windows, as long as the Python output encoding is UTF-8.

- v4.4.3: added the `# coding: utf-8` declaration to two files that were
missing it, so that tests can run on Python 2.

## Version 5.1 (April 7, 2017)

- Removed the dependency on `html5lib` by dropping support for Python 3.2.
Expand Down
2 changes: 1 addition & 1 deletion ftfy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ftfy import fixes
from ftfy.formatting import display_ljust

__version__ = '5.1'
__version__ = '5.1.1'


# See the docstring for ftfy.bad_codecs to see what we're doing here.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
The older version of ftfy, version 4.4, is still available and can run on
Python 2. Try this:
pip install ftfy==4.4.2
pip install ftfy==4.4.3
"""


Expand All @@ -24,7 +24,7 @@

setup(
name="ftfy",
version='5.1',
version='5.1.1',
maintainer='Luminoso Technologies, Inc.',
maintainer_email='info@luminoso.com',
license="MIT",
Expand Down

0 comments on commit 832651c

Please sign in to comment.