mirror of
https://github.com/sprockets/sprockets.mixins.http.git
synced 2024-11-14 19:29:31 +00:00
Release version 1.1.1
This commit is contained in:
parent
b3b06e5f99
commit
8ab79eb55f
3 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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',
|
||||
|
|
|
@ -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__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue