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",)