Metadata bumps for 2.0.0.

This commit is contained in:
Dave Shawley 2016-02-24 14:47:39 -05:00
parent dbf6eccb05
commit baf643e3ef
2 changed files with 5 additions and 4 deletions

View file

@ -1,8 +1,8 @@
Version History
===============
`Next Release`_
---------------
`2.0.0`_ (24 Feb 2016)
----------------------
- Repackage from a module into a package. Distributing raw modules inside
of a namespace package is unreliable and questionably correct.
- Add :func:`sprockets.mixins.mediatype.content.add_transcoder`.
@ -33,7 +33,8 @@ Version History
---------------------
- Initial Release
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/1.0.4...HEAD
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.0...HEAD
.. _2.0.0: https://github.com/sprockets/sprockets.http/compare/1.0.4...2.0.0
.. _1.0.4: https://github.com/sprockets/sprockets.http/compare/1.0.3...1.0.4
.. _1.0.3: https://github.com/sprockets/sprockets.http/compare/1.0.2...1.0.3
.. _1.0.2: https://github.com/sprockets/sprockets.http/compare/1.0.1...1.0.2

View file

@ -38,7 +38,7 @@ set_default_content_type = _mark_deprecated(set_default_content_type)
ContentMixin = _mark_deprecated(ContentMixin)
ContentSettings = _mark_deprecated(ContentSettings)
version_info = (1, 0, 4)
version_info = (2, 0, 0)
__version__ = '.'.join(str(v) for v in version_info)
__all__ = ('ContentMixin', 'ContentSettings', 'add_binary_content_type',
'add_text_content_type', 'set_default_content_type',