mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-22 03:00:25 +00:00
bump to 1.0.4
This commit is contained in:
parent
212dcb7876
commit
1a60c4a0f3
3 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,11 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
`1.0.4`_ (14 Sep 2015)
|
||||
---------------------
|
||||
- Support using the default_content_type in the settings if request does not
|
||||
contain the Accept header
|
||||
|
||||
`1.0.3`_ (10 Sep 2015)
|
||||
---------------------
|
||||
- Update installation files
|
||||
|
@ -17,6 +22,7 @@ Version History
|
|||
---------------------
|
||||
- Initial Release
|
||||
|
||||
.. _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
|
||||
.. _1.0.1: https://github.com/sprockets/sprockets.http/compare/1.0.0...1.0.1
|
||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ tests_require = read_requirements('testing.txt')
|
|||
|
||||
setuptools.setup(
|
||||
name='sprockets.mixins.mediatype',
|
||||
version='1.0.3',
|
||||
version='1.0.4',
|
||||
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, 3)
|
||||
version_info = (1, 0, 4)
|
||||
__version__ = '.'.join(str(v) for v in version_info)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue