From 6353f4f47fc672ebf547fba081e4257228b6a9c5 Mon Sep 17 00:00:00 2001 From: Amber Heilman Date: Thu, 10 Sep 2015 11:16:03 -0400 Subject: [PATCH] bump to 1.0.3 --- docs/history.rst | 10 ++++++++++ setup.py | 2 +- sprockets/mixins/mediatype.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index feca285..f0a32f9 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,6 +1,14 @@ Version History =============== +`1.0.3`_ (10 Sep 2015) +--------------------- +- Update installation files + +`1.0.2`_ (9 Sep 2015) +--------------------- +- Rename package to mediatype + `1.0.1`_ (9 Sep 2015) --------------------- - Repackaged for Travis-CI configuration. @@ -9,5 +17,7 @@ Version History --------------------- - Initial Release +.. _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 .. _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 0f085c8..a5559c2 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ tests_require = read_requirements('testing.txt') setuptools.setup( name='sprockets.mixins.mediatype', - version='1.0.2', + version='1.0.3', 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/mediatype.py b/sprockets/mixins/mediatype.py index 438577f..9b06693 100644 --- a/sprockets/mixins/mediatype.py +++ b/sprockets/mixins/mediatype.py @@ -9,7 +9,7 @@ from ietfparse import algorithms, errors, headers from tornado import escape, web -version_info = (1, 0, 2) +version_info = (1, 0, 3) __version__ = '.'.join(str(v) for v in version_info) logger = logging.getLogger(__name__)