From 2051f7b012f38d02ae304209816c828690399b33 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Thu, 27 Jul 2023 19:50:33 +0100 Subject: [PATCH] Release 2.0.4 (#509) --- CHANGES.rst | 5 +++++ async_lru/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 685b72f..eebd17b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ CHANGES .. towncrier release notes start +2.0.4 (2023-07-27) +================== + +- Fixed an error when there are pending tasks while calling ``.cache_clear()``. + 2.0.3 (2023-07-07) ================== diff --git a/async_lru/__init__.py b/async_lru/__init__.py index 0bdffc7..e04ca33 100644 --- a/async_lru/__init__.py +++ b/async_lru/__init__.py @@ -28,7 +28,7 @@ from typing_extensions import Self -__version__ = "2.0.3" +__version__ = "2.0.4" __all__ = ("alru_cache",)