Release 2.6.0

This commit is contained in:
Andrew Rabert 2022-03-07 18:04:25 -05:00
parent 95423f8384
commit bb8e4e6014
3 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,11 @@
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
--------------------
- Change ``HTTPResponse.links`` to return empty list when ``Link`` header is not present
@ -126,7 +131,8 @@ Version History
---------------------
- 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.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

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup(
name='sprockets.mixins.http',
version='2.5.0',
version='2.6.0',
description='HTTP Client Mixin for Tornado RequestHandlers',
long_description=open('README.rst').read(),
url='https://github.com/sprockets/sprockets.mixins.http',

View file

@ -14,7 +14,7 @@ from ietfparse import algorithms, errors, headers
from sprockets.mixins.mediatype import transcoders
from tornado import httpclient
__version__ = '2.5.0'
__version__ = '2.6.0'
LOGGER = logging.getLogger(__name__)