Release max_http_attempts kwarg (1.0.6)

This commit is contained in:
Dave Shawley 2017-08-16 14:36:02 -04:00
parent 2413f9965f
commit 6b5999794a
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Version History Version History
=============== ===============
`1.0.6`_ Aug 16, 2017
---------------------
- Add ``max_http_attempts`` keyword param
`1.0.5`_ Aug 7, 2017 `1.0.5`_ Aug 7, 2017
-------------------- --------------------
- Add support for allow_nonstandard_methods and max_clients - Add support for allow_nonstandard_methods and max_clients
@ -25,6 +29,7 @@ Version History
--------------------- ---------------------
- Initial Version - Initial Version
.. _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.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 .. _1.0.4: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.3...1.0.4
.. _1.0.3: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.2...1.0.3 .. _1.0.3: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.2...1.0.3

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup( setuptools.setup(
name='sprockets.mixins.http', name='sprockets.mixins.http',
version='1.0.5', version='1.0.6',
description='HTTP Client Mixin for Tornado RequestHandlers', description='HTTP Client Mixin for Tornado RequestHandlers',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
url='https://github.com/sprockets/sprockets.mixins.http', 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 from tornado import gen, httpclient
import umsgpack import umsgpack
__version__ = '1.0.4' __version__ = '1.0.6'
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)