From 07b5ecc21ce5d388d4312c943d79f813311e349f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Tue, 13 Jul 2021 13:59:13 +0200 Subject: Prepare the v3.5.0 release (#341) --- ChangeLog.rst | 6 ++++++ pymemcache/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 13a5262..a73b219 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,12 @@ Changelog ========= +New in version 3.5.0 +-------------------- +* Sockets are now closed on ``MemcacheUnexpectedCloseError``. +* Added support for TCP keepalive for client sockets on Linux platforms. +* Added retrying mechanisms by wrapping clients. + New in version 3.4.4 -------------------- * Idle connections will be removed from the pool after ``pool_idle_timeout``. diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py index 00acc44..4fbf5e7 100644 --- a/pymemcache/__init__.py +++ b/pymemcache/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.4.4' +__version__ = '3.5.0' from pymemcache.client.base import Client # noqa from pymemcache.client.base import PooledClient # noqa -- cgit v1.2.1