Version bumps around the world

This commit is contained in:
Dave Shawley 2015-09-09 18:02:06 -04:00
parent 6f18782c71
commit 91f7ad972f
3 changed files with 9 additions and 3 deletions

View file

@ -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

View file

@ -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',

View file

@ -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__)