Version 1.0.8

This commit is contained in:
Andrew Rabert 2018-02-07 16:18:50 -05:00
parent 9e94f18cfa
commit bcd89a05d6
3 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,12 @@
Version History
===============
`1.0.8`_ Feb 7, 2018
--------------------
- Add ``max_redirects`` keyword param
- Add ``validate_cert`` keyword param
- Fix log records always using default number of attempts
`1.0.7`_ Oct 19, 2017
---------------------
- Change the hard pin requirement on umsgpack
@ -33,6 +39,8 @@ Version History
---------------------
- Initial Version
.. _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
.. _1.0.5: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.4...1.0.5
.. _1.0.4: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.3...1.0.4

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup(
name='sprockets.mixins.http',
version='1.0.7',
version='1.0.8',
description='HTTP Client Mixin for Tornado RequestHandlers',
long_description=open('README.rst').read(),
url='https://github.com/sprockets/sprockets.mixins.http',

View file

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