Bump the revision

This commit is contained in:
Gavin M. Roy 2014-08-29 09:56:17 -04:00
parent 5236fe130e
commit 089dbaf04d
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ if sys.version_info < (3, 0):
setup(name='sprockets',
version='0.1.0',
version='0.1.1',
description=('A modular, loosely coupled micro-framework built on top '
'of Tornado simplifying the creation of web applications '
'and RabbitMQ workers'),

View file

@ -5,7 +5,7 @@ A loosely coupled framework built on top of Tornado. Take what you need to
build awesome applications.
"""
version_info = (0, 0, 0)
version_info = (0, 1, 1)
__version__ = '.'.join(str(v) for v in version_info)
import logging