Skip to content

Commit cb9e034

Browse files
Release v2.3.0 (#748)
1 parent a2aa7b0 commit cb9e034

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ CHANGES
55
.. towncrier release notes start
66
77
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+
817
2.2.0 (2026-02-20)
918
==================
1019

async_lru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from asyncio.coroutines import _is_coroutine # type: ignore[attr-defined]
3434

3535

36-
__version__ = "2.2.0"
36+
__version__ = "2.3.0"
3737

3838
__all__ = ("AlruCacheLoopResetWarning", "alru_cache")
3939

0 commit comments

Comments
 (0)