Release version 1.1.1

This commit is contained in:
Andrew Rabert 2019-01-09 16:22:56 -05:00
parent b3b06e5f99
commit 8ab79eb55f
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Version History
===============
`1.1.1`_ Jan 9, 2019
--------------------
- Fix failure when response lacks Content-Type header
`1.1.0`_ Oct 11, 2018
---------------------
- Add logging of response ``Warning`` headers
@ -48,6 +52,7 @@ Version History
---------------------
- Initial Version
.. _1.1.1: https://github.com/sprockets/sprockets.mixins.http/compare/1.1.0...1.1.1
.. _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

View file

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