Release version 1.0.9

This commit is contained in:
Andrew Rabert 2018-08-07 16:01:15 -04:00
parent 0c3c65af99
commit 9ea803523a
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,11 @@
Version History
===============
`1.0.9`_ Aug 7, 2018
--------------------
- Add support for Python 3.6 and 3.7
- Add support for Tornado < 6
`1.0.8`_ Feb 7, 2018
--------------------
- Add ``max_redirects`` keyword param
@ -39,6 +44,7 @@ Version History
---------------------
- Initial Version
.. _1.0.9: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.8...1.0.9
.. _1.0.8: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.7...1.0.8
.. _1.0.7: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.6...1.0.7
.. _1.0.6: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.5...1.0.6

View file

@ -16,7 +16,7 @@ from ietfparse import algorithms, errors, headers
from tornado import gen, httpclient
import umsgpack
__version__ = '1.0.8'
__version__ = '1.0.9'
LOGGER = logging.getLogger(__name__)