mirror of
https://github.com/sprockets/sprockets.mixins.http.git
synced 2024-11-14 19:29:31 +00:00
Release 2.6.0
This commit is contained in:
parent
95423f8384
commit
bb8e4e6014
3 changed files with 9 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
||||||
Version History
|
Version History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
`2.6.0`_ Mar 07 2022
|
||||||
|
--------------------
|
||||||
|
- Add support for ``Content-Type`` suffixes (ex. ``a/b+json``, ``x/y+msgpack``)
|
||||||
|
- Fix exception when ``self.correlation_id`` is ``None``
|
||||||
|
|
||||||
`2.5.0`_ Sep 16 2021
|
`2.5.0`_ Sep 16 2021
|
||||||
--------------------
|
--------------------
|
||||||
- Change ``HTTPResponse.links`` to return empty list when ``Link`` header is not present
|
- Change ``HTTPResponse.links`` to return empty list when ``Link`` header is not present
|
||||||
|
@ -126,7 +131,8 @@ Version History
|
||||||
---------------------
|
---------------------
|
||||||
- Initial Version
|
- Initial Version
|
||||||
|
|
||||||
.. _Next Release: https://github.com/sprockets/sprockets.mixins.http/compare/2.5.0...master
|
.. _Next Release: https://github.com/sprockets/sprockets.mixins.http/compare/2.6.0...master
|
||||||
|
.. _2.6.0: https://github.com/sprockets/sprockets.mixins.http/compare/2.5.0...2.6.0
|
||||||
.. _2.5.0: https://github.com/sprockets/sprockets.mixins.http/compare/2.4.1...2.5.0
|
.. _2.5.0: https://github.com/sprockets/sprockets.mixins.http/compare/2.4.1...2.5.0
|
||||||
.. _2.4.1: https://github.com/sprockets/sprockets.mixins.http/compare/2.4.0...2.4.1
|
.. _2.4.1: https://github.com/sprockets/sprockets.mixins.http/compare/2.4.0...2.4.1
|
||||||
.. _2.4.0: https://github.com/sprockets/sprockets.mixins.http/compare/2.3.3...2.4.0
|
.. _2.4.0: https://github.com/sprockets/sprockets.mixins.http/compare/2.3.3...2.4.0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -23,7 +23,7 @@ def read_requirements(name):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='sprockets.mixins.http',
|
name='sprockets.mixins.http',
|
||||||
version='2.5.0',
|
version='2.6.0',
|
||||||
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',
|
||||||
|
|
|
@ -14,7 +14,7 @@ from ietfparse import algorithms, errors, headers
|
||||||
from sprockets.mixins.mediatype import transcoders
|
from sprockets.mixins.mediatype import transcoders
|
||||||
from tornado import httpclient
|
from tornado import httpclient
|
||||||
|
|
||||||
__version__ = '2.5.0'
|
__version__ = '2.6.0'
|
||||||
|
|
||||||
LOGGER = logging.getLogger(__name__)
|
LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue