Skip to content

Commit

Permalink
Merge pull request #10 from sprockets/release-2
Browse files Browse the repository at this point in the history
Prepare for release 2.0.0
  • Loading branch information
dave-shawley committed Feb 24, 2016
2 parents dbf6ecc + a9e24b7 commit 8a381c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
'github_banner': True,
'travis_button': True,
'sidebar_width': '230px',
'codecov_button': True,
}

intersphinx_mapping = {
Expand Down
7 changes: 4 additions & 3 deletions docs/history.rst
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sprockets/mixins/mediatype/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def wrapper(*args, **kwargs):
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',
Expand Down

0 comments on commit 8a381c5

Please sign in to comment.