aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2021-09-29 22:21:52 +0200
committerThomas Kemmer <tkemmer@computer.org>2021-09-29 22:21:52 +0200
commitbc998ba4278e06f19ab0270c42b8ff7af6448cab (patch)
treebc26d91f6d032ef1c934a6ef59ef37ff277f3e80
parent2a7afc2a33e257cc6df5db6387021bddda741264 (diff)
downloadcachetools-bc998ba4278e06f19ab0270c42b8ff7af6448cab.tar.gz
Release v4.2.3.
-rw-r--r--CHANGELOG.rst11
-rw-r--r--src/cachetools/__init__.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index cf4986e..d7e0f20 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,14 @@
+v4.2.3 (2021-09-29)
+===================
+
+- Add documentation and tests for using ``TTLCache`` with
+ ``datetime``.
+
+- Link to typeshed typing stubs.
+
+- Flatten package file hierarchy.
+
+
v4.2.2 (2021-04-27)
===================
diff --git a/src/cachetools/__init__.py b/src/cachetools/__init__.py
index 0e5546e..b2c0072 100644
--- a/src/cachetools/__init__.py
+++ b/src/cachetools/__init__.py
@@ -12,7 +12,7 @@ __all__ = (
"cachedmethod",
)
-__version__ = "4.2.2"
+__version__ = "4.2.3"
import collections
import collections.abc