From b9f66e21aa84e2984f9d33b64ea8305621709cf2 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sun, 23 Apr 2023 16:59:38 +0100 Subject: [PATCH] Release 0.12.1 --- CHANGES.rst | 7 +++++++ aiocache/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1de1eea1..76a033fe 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,13 @@ CHANGES .. towncrier release notes start +0.12.1 (2023-04-23) +=================== + +* Added ``skip_cache_func`` to dynamically skip caching certain results. +* Removed typing support due to producing unresolvable errors (until v1.0). +* Stopped installing ``tests`` as part of the package. + 0.12.0 (2023-01-13) =================== diff --git a/aiocache/__init__.py b/aiocache/__init__.py index 4ed6971a..7010e1a6 100644 --- a/aiocache/__init__.py +++ b/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__)