Skip to content

Commit

Permalink
Fix removed cachelib dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Lxstr committed Mar 21, 2024
1 parent 5e688cb commit 6309734
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.7.1 - 2024-03-21
------------------

Fixed
~~~~~
- Include prematurely removed ``cachelib`` dependency. Will be removed in 1.0.0 to be an optional dependency (`#223 <https://github.com/pallets-eco/flask-session/issues/223>`_).

0.7.0 - 2024-03-18
------------------

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ requires-python = ">=3.8"
dependencies = [
"flask>=2.2",
"msgspec>=0.18.6",
"cachelib",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion src/flask_session/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .defaults import Defaults

__version__ = "0.7.0"
__version__ = "0.7.1"


class Session:
Expand Down

0 comments on commit 6309734

Please sign in to comment.