Transfer copyright, bump version

This commit is contained in:
Kroket Ltd
2022-11-13 02:12:23 +02:00
parent 65b44db7df
commit 3e6b102b34
8 changed files with 22 additions and 14 deletions
+2 -2
View File
@@ -6,11 +6,11 @@
Adds server session support to your application.
:copyright: (c) 2014 by Shipeng Feng.
:copyright: (c) 2020 by Sander.
:copyright: (c) 2020 by Kroket Ltd.
:license: BSD, see LICENSE for more details.
"""
__version__ = '1.0.5-dev'
__version__ = '1.0.6'
import os
+2 -2
View File
@@ -6,7 +6,7 @@
Server-side Sessions and SessionInterfaces.
:copyright: (c) 2014 by Shipeng Feng.
:copyright: (c) 2020 by Sander.
:copyright: (c) 2020 by Kroket Ltd.
:license: BSD, see LICENSE for more details.
"""
import time
@@ -194,7 +194,7 @@ class SessionInterface(QuartSessionInterface):
async def create(self, app: Quart):
raise NotImplementedError()
async def get(self, app: Quart, key: str):
async def get(self, key: str, app: Quart = None):
raise NotImplementedError()
async def set(self, key: str, value, expiry: int = None,