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 a2aa7b0 commit cb9e034Copy full SHA for cb9e034
2 files changed
CHANGES.rst
@@ -5,6 +5,15 @@ CHANGES
5
.. towncrier release notes start
6
7
8
+2.3.0 (2026-03-18)
9
+==================
10
+
11
+- Added ``cache_contains()`` for read-only key lookup.
12
+- Changed cross-loop cache access to auto-reset and rebind to the current event loop.
13
+- Added ``AlruCacheLoopResetWarning`` when an auto-reset happens due to event loop change.
14
+- Forwarded ``cache_close(wait=...)`` for bound methods.
15
16
17
2.2.0 (2026-02-20)
18
==================
19
async_lru/__init__.py
@@ -33,7 +33,7 @@
33
from asyncio.coroutines import _is_coroutine # type: ignore[attr-defined]
34
35
36
-__version__ = "2.2.0"
+__version__ = "2.3.0"
37
38
__all__ = ("AlruCacheLoopResetWarning", "alru_cache")
39
0 commit comments