diff --git a/setup.py b/setup.py index 3b913b4..b402503 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='swirl', description='Some sugar for asynchronous Tornado code', - version='0.1.0', + version='0.1.1', author='Eric Naeseth', author_email='eric@naeseth.com', url='http://code.naeseth.com/swirl/', diff --git a/swirl.py b/swirl.py index 44515f7..5d301ac 100644 --- a/swirl.py +++ b/swirl.py @@ -18,7 +18,7 @@ def isgeneratorfunction(obj): return bool((inspect.isfunction(object) or inspect.ismethod(object)) and obj.func_code.co_flags & CO_GENERATOR) -__version__ = '0.1.0' +__version__ = '0.1.1' class CoroutineRunner(object): def __init__(self, generator, web_handler=None, io_loop=None):