Release version 1.1.0

This commit is contained in:
Andrew Rabert 2018-10-11 14:54:39 -04:00
parent df5103fcb9
commit b593214b89
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Version History
===============
`1.1.0`_ Oct 11, 2018
--------------------
- Add logging of response ``Warning`` headers
`1.0.9`_ Aug 7, 2018
--------------------
- Add support for Python 3.6 and 3.7
@ -44,6 +48,7 @@ Version History
---------------------
- Initial Version
.. _1.1.0: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.9...1.1.0
.. _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

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup(
name='sprockets.mixins.http',
version='1.0.9',
version='1.1.0',
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.9'
__version__ = '1.1.0'
LOGGER = logging.getLogger(__name__)