From 990665be51af3ae879136709e8846e61d7c0e12e Mon Sep 17 00:00:00 2001 From: Thomas Kemmer Date: Mon, 15 Jul 2024 20:41:33 +0200 Subject: [PATCH] Release v5.4.0. --- CHANGELOG.rst | 12 ++++++++++++ src/cachetools/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 591732a..757cb34 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,15 @@ +v5.4.0 (2024-07-15) +=================== + +- Add the ``keys.typedmethodkey`` decorator. + +- Deprecate ``MRUCache`` class. + +- Deprecate ``@func.mru_cache`` decorator. + +- Update CI environment. + + v5.3.3 (2024-02-26) =================== diff --git a/src/cachetools/__init__.py b/src/cachetools/__init__.py index 2d4ebed..5a9a042 100644 --- a/src/cachetools/__init__.py +++ b/src/cachetools/__init__.py @@ -13,7 +13,7 @@ "cachedmethod", ) -__version__ = "5.3.3" +__version__ = "5.4.0" import collections import collections.abc