From bcd89a05d69e1f6f51bb92cb2637d01b864bdab0 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Wed, 7 Feb 2018 16:18:50 -0500 Subject: [PATCH] Version 1.0.8 --- docs/history.rst | 8 ++++++++ setup.py | 2 +- sprockets/mixins/http/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index b955df9..9496aa6 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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 diff --git a/setup.py b/setup.py index 4cfffa3..173e505 100755 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/sprockets/mixins/http/__init__.py b/sprockets/mixins/http/__init__.py index 2ed1edb..124d1b9 100644 --- a/sprockets/mixins/http/__init__.py +++ b/sprockets/mixins/http/__init__.py @@ -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__)