diff --git a/CHANGES.rst b/CHANGES.rst index c15c091a..5efd62cd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,15 +1,16 @@ Version 0.12.0 -------------- -Unreleased +Released 2024-02-11 - ``RedisCache`` now supports callables as keys - Added ``MongoDB`` as a cache backend + Version 0.11.0 -------------- -Released 2024-02010 +Released 2024-02-10 - Drop python 3.7 support - Add python 3.11 support diff --git a/src/cachelib/__init__.py b/src/cachelib/__init__.py index 2d477612..36473868 100644 --- a/src/cachelib/__init__.py +++ b/src/cachelib/__init__.py @@ -19,4 +19,4 @@ "DynamoDbCache", "MongoDbCache", ] -__version__ = "0.11.0" +__version__ = "0.12.0"