summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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