summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2021-04-14 15:25:57 -0700
committerGitHub <noreply@github.com>2021-04-14 15:25:57 -0700
commit9e2451a3831e216ce726bf2b12f6a68d61e5cbb6 (patch)
tree4e01b8f8b5c57c3420c35a33e7788f1fbf410840
parentf232bdd073f2326485604b690e839c46c42c60f4 (diff)
downloadpymemcache-3.4.2.tar.gz
Prepare the version 3.4.2 release (#312)v3.4.2
-rw-r--r--ChangeLog.rst5
-rw-r--r--pymemcache/__init__.py2
2 files changed, 6 insertions, 1 deletions
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