summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Gordon <charles.gordon@gmail.com>2020-03-20 09:13:18 -0700
committerGitHub <noreply@github.com>2020-03-20 09:13:18 -0700
commitb5d586092fced9e5483fcd03f034c8478376ed72 (patch)
treeb4cfccbc80fc4bb2a065d30737a88f1b7ca73503
parentcc9f9b114e756de5ac03ac06c64d30ea26884f06 (diff)
parenteeeb7084d46f75df78a8aadfb84b0158d7cb83f2 (diff)
downloadpymemcache-b5d586092fced9e5483fcd03f034c8478376ed72.tar.gz
Merge pull request #274 from jparise/3.0.1v3.0.1
Prepare the version 3.0.1 release
-rw-r--r--ChangeLog.rst6
-rw-r--r--pymemcache/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 715e65a..407d1ec 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,12 @@
Changelog
=========
+New in version 3.0.1
+--------------------
+* Make MockMemcacheClient more consistent with the real client.
+* Pass ``encoding`` from HashClient to its pooled clients when ``use_pooling``
+ is enabled.
+
New in version 3.0.0
--------------------
* The serialization API has been reworked. Instead of consuming a serializer
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index 5e458c3..f6bfca9 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '3.0.0'
+__version__ = '3.0.1'
from pymemcache.client.base import Client # noqa
from pymemcache.client.base import PooledClient # noqa