Skip to content

Commit

Permalink
Version number bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Naeseth committed Apr 26, 2010
1 parent fae73a5 commit 3d493a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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/',
Expand Down
2 changes: 1 addition & 1 deletion swirl.py
Expand Up @@ -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):
Expand Down

0 comments on commit 3d493a7

Please sign in to comment.