We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677b99c commit e673d62Copy full SHA for e673d62
CHANGES.rst
@@ -4,6 +4,14 @@ CHANGES
4
5
.. towncrier release notes start
6
7
+0.12.3 (2024-09-25)
8
+===================
9
+
10
+* Added SSL support for Redis backend.
11
+* Fixed memory leak in ``SimpleMemoryBackend._redlock_release()``.
12
+* Fixed exception for cache proxy creation when passing ``None``.
13
14
15
0.12.2 (2023-08-06)
16
===================
17
aiocache/__init__.py
@@ -4,7 +4,7 @@
from .backends.memory import SimpleMemoryCache
from .base import BaseCache
-__version__ = "0.12.2"
+__version__ = "0.12.3"
logger = logging.getLogger(__name__)
0 commit comments