diff --git a/CHANGELOG b/CHANGELOG index dca6733..1eb7aef 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +6.14.0 +------ + +- Allow space in mimetype before parameters (thanks to miki725) + https://github.com/pipermerriam/flex/pull/206 +- Open up dependency requirements (thanks to blueyed, javabrett) + https://github.com/pipermerriam/flex/pull/207 + https://github.com/pipermerriam/flex/pull/211 +- Increased test coverage with additional vectors, rearranged tests + https://github.com/pipermerriam/flex/pull/214 + https://github.com/pipermerriam/flex/pull/216 +- Fixed warning about importing from collections on Python 3 (thanks to sloria) + https://github.com/pipermerriam/flex/pull/215 + 6.13.2 ------ diff --git a/setup.py b/setup.py index e6a852e..346fb0f 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except ImportError: from distutils.core import setup, find_packages -version = '6.13.2' +version = '6.14.0' readme = open(os.path.join(DIR, 'README.md')).read()