mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-12-29 11:17:10 +00:00
Version bumps around the world
This commit is contained in:
parent
6f18782c71
commit
91f7ad972f
3 changed files with 9 additions and 3 deletions
|
@ -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
|
||||
|
|
2
setup.py
2
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',
|
||||
|
|
|
@ -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__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue