Skip to content

Commit 0baf8cb

Browse files
committed
release version 0.5.0
1 parent c97e56a commit 0baf8cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Version 0.5.0
22
-------------
33

4-
Unreleased
4+
Released 2023-05-11
55

66
- Drop support for Python < 3.7.
77
- Switch to ``pyproject.toml`` and Flit for packaging.

src/flask_session/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
__version__ = '0.5.0'
2-
31
import os
42

53
from .sessions import NullSessionInterface, RedisSessionInterface, \
64
MemcachedSessionInterface, FileSystemSessionInterface, \
75
MongoDBSessionInterface, SqlAlchemySessionInterface
86

7+
__version__ = '0.5.0'
8+
99

1010
class Session(object):
1111
"""This class is used to add Server-side Session to one or more Flask

0 commit comments

Comments
 (0)