diff --git a/CHANGELOG.md b/CHANGELOG.md index bc3fb6d..f959831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 1.0.7 + +- Updated memcached support (removed asyncio.loop, removed coroutine decorator) + ### 1.0.6 - MongoDB support diff --git a/quart_session/__init__.py b/quart_session/__init__.py index 92f6454..aebb80e 100644 --- a/quart_session/__init__.py +++ b/quart_session/__init__.py @@ -10,7 +10,7 @@ :license: BSD, see LICENSE for more details. """ -__version__ = '1.0.6' +__version__ = '1.0.7' import os diff --git a/setup.py b/setup.py index 54a124b..bc87145 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ INSTALL_REQUIRES = [ setup( name='Quart-Session', - version='1.0.6', + version='1.0.7', url='https://github.com/kroketio/quart-session', license='BSD', author='Kroket Ltd.',