diff --git a/setup.py b/setup.py index bf271a7..1e8cfae 100644 --- a/setup.py +++ b/setup.py @@ -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'), diff --git a/sprockets/__init__.py b/sprockets/__init__.py index a40c0ee..a97ab92 100644 --- a/sprockets/__init__.py +++ b/sprockets/__init__.py @@ -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