diff --git a/docs/history.rst b/docs/history.rst index 92dfbe3..feca285 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,7 +1,13 @@ Version History =============== + +`1.0.1`_ (9 Sep 2015) +--------------------- +- Repackaged for Travis-CI configuration. + `1.0.0`_ (9 Sep 2015) ----------------------- +--------------------- - Initial Release +.. _1.0.1: https://github.com/sprockets/sprockets.http/compare/1.0.0...1.0.1 .. _1.0.0: https://github.com/sprockets/sprockets.http/compare/0.0.0...1.0.0 diff --git a/setup.py b/setup.py index 8d8dc5a..7985f97 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ tests_require = read_requirements('testing.txt') setuptools.setup( name='sprockets.mixins.media_type', - version='1.0.0', + version='1.0.1', description='A mixin for reporting handling content-type/accept headers', long_description='\n' + open('README.rst').read(), url='https://github.com/sprockets/sprockets.mixins.media_type', diff --git a/sprockets/mixins/media_type.py b/sprockets/mixins/media_type.py index 3d49dc4..f195cc2 100644 --- a/sprockets/mixins/media_type.py +++ b/sprockets/mixins/media_type.py @@ -9,7 +9,7 @@ from ietfparse import algorithms, errors, headers from tornado import escape, web -version_info = (1, 0, 0) +version_info = (1, 0, 1) __version__ = '.'.join(str(v) for v in version_info) logger = logging.getLogger(__name__)