We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97e56a commit 0baf8cbCopy full SHA for 0baf8cb
CHANGES.rst
@@ -1,7 +1,7 @@
1
Version 0.5.0
2
-------------
3
4
-Unreleased
+Released 2023-05-11
5
6
- Drop support for Python < 3.7.
7
- Switch to ``pyproject.toml`` and Flit for packaging.
src/flask_session/__init__.py
@@ -1,11 +1,11 @@
-__version__ = '0.5.0'
-
import os
from .sessions import NullSessionInterface, RedisSessionInterface, \
MemcachedSessionInterface, FileSystemSessionInterface, \
MongoDBSessionInterface, SqlAlchemySessionInterface
8
+__version__ = '0.5.0'
+
9
10
class Session(object):
11
"""This class is used to add Server-side Session to one or more Flask
0 commit comments