mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-22 03:00:25 +00:00
Metadata updates for 2.2.1.
This commit is contained in:
parent
597e88475e
commit
5b74e20542
2 changed files with 9 additions and 7 deletions
|
@ -1,5 +1,10 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
`2.2.1`_ (12 Apr 2017)
|
||||
----------------------
|
||||
- Pin :mod:`ietfparse` to avoid breakages introduced in 1.5.0.
|
||||
|
||||
`2.2.0`_ (7 Jun 2017)
|
||||
---------------------
|
||||
- Add :func:`sprockets.mixins.mediatype.content.install`.
|
||||
|
@ -9,7 +14,7 @@ Version History
|
|||
|
||||
`2.1.0`_ (16 Mar 2016)
|
||||
----------------------
|
||||
- Set the _`Vary` header if we are setting the content type.
|
||||
- Set the :http:header:`Vary` header if we are setting the content type.
|
||||
|
||||
`2.0.1`_ (29 Feb 2016)
|
||||
----------------------
|
||||
|
@ -48,7 +53,8 @@ Version History
|
|||
---------------------
|
||||
- Initial Release
|
||||
|
||||
.. _Next Release: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.2.0...HEAD
|
||||
.. _Next Release: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.2.1...HEAD
|
||||
.. _2.2.1: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.2.0...2.2.1
|
||||
.. _2.2.0: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.1.0...2.2.0
|
||||
.. _2.1.0: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.0.1...2.1.0
|
||||
.. _2.0.1: https://github.com/sprockets/sprockets.mixins.media_type/compare/2.0.0...2.0.1
|
||||
|
@ -58,5 +64,3 @@ Version History
|
|||
.. _1.0.2: https://github.com/sprockets/sprockets.mixins.media_type/compare/1.0.1...1.0.2
|
||||
.. _1.0.1: https://github.com/sprockets/sprockets.mixins.media_type/compare/1.0.0...1.0.1
|
||||
.. _1.0.0: https://github.com/sprockets/sprockets.mixins.media_type/compare/0.0.0...1.0.0
|
||||
|
||||
.. _Vary: http://tools.ietf.org/html/rfc7234#section-4.1
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
sprockets.mixins.media_type
|
||||
|
||||
"""
|
||||
import functools
|
||||
import warnings
|
||||
|
||||
try:
|
||||
from .content import (ContentMixin, ContentSettings,
|
||||
|
@ -25,7 +23,7 @@ except ImportError as error: # pragma no cover
|
|||
set_default_content_type = _error_closure
|
||||
|
||||
|
||||
version_info = (2, 2, 0)
|
||||
version_info = (2, 2, 1)
|
||||
__version__ = '.'.join(str(v) for v in version_info)
|
||||
__all__ = ['ContentMixin', 'ContentSettings', 'add_binary_content_type',
|
||||
'add_text_content_type', 'set_default_content_type',
|
||||
|
|
Loading…
Reference in a new issue