diff --git a/CHANGELOG.md b/CHANGELOG.md index f959831..073aaea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.0.0 + +- Move from aioredis to redis + ### 1.0.7 - Updated memcached support (removed asyncio.loop, removed coroutine decorator) diff --git a/quart_session/__init__.py b/quart_session/__init__.py index aebb80e..982e308 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.7' +__version__ = '2.0.0' import os diff --git a/setup.py b/setup.py index e9ab570..c9b9572 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ INSTALL_REQUIRES = [ setup( name='Quart-Session', - version='1.0.7', + version='2.0.0', url='https://github.com/kroketio/quart-session', license='BSD', author='Kroket Ltd.',