From 9e2451a3831e216ce726bf2b12f6a68d61e5cbb6 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Wed, 14 Apr 2021 15:25:57 -0700 Subject: Prepare the version 3.4.2 release (#312) --- ChangeLog.rst | 5 +++++ pymemcache/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index c3216c8..6ba4528 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,11 @@ Changelog ========= +New in version 3.4.2 +-------------------- +* Remove trailing space for commands that don't take arguments, such as + ``stats``. This was a violation of the memcached protocol. + New in version 3.4.1 -------------------- * CAS operations will now raise ``MemcacheIllegalInputError`` when ``None`` is diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py index 2713123..25a378e 100644 --- a/pymemcache/__init__.py +++ b/pymemcache/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.4.1' +__version__ = '3.4.2' from pymemcache.client.base import Client # noqa from pymemcache.client.base import PooledClient # noqa -- cgit v1.2.1