diff --git a/docs/conf.py b/docs/conf.py index 44c6e1e..391ad79 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,6 +28,7 @@ html_theme_options = { 'github_banner': True, 'travis_button': True, 'sidebar_width': '230px', + 'codecov_button': True, } intersphinx_mapping = { diff --git a/docs/history.rst b/docs/history.rst index 9d6fa2e..cf2c563 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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 diff --git a/sprockets/mixins/mediatype/__init__.py b/sprockets/mixins/mediatype/__init__.py index a61b2e5..f154a45 100644 --- a/sprockets/mixins/mediatype/__init__.py +++ b/sprockets/mixins/mediatype/__init__.py @@ -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',