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 b74b4b6 commit b9f66e2Copy full SHA for b9f66e2
CHANGES.rst
@@ -4,6 +4,13 @@ CHANGES
4
5
.. towncrier release notes start
6
7
+0.12.1 (2023-04-23)
8
+===================
9
+
10
+* Added ``skip_cache_func`` to dynamically skip caching certain results.
11
+* Removed typing support due to producing unresolvable errors (until v1.0).
12
+* Stopped installing ``tests`` as part of the package.
13
14
0.12.0 (2023-01-13)
15
===================
16
aiocache/__init__.py
@@ -4,7 +4,7 @@
from .backends.memory import SimpleMemoryCache
from .base import BaseCache
-__version__ = "0.12.0"
+__version__ = "0.12.1"
logger = logging.getLogger(__name__)
0 commit comments