summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2020-08-17 16:20:21 -0700
committerGitHub <noreply@github.com>2020-08-17 16:20:21 -0700
commit9ba2e98b2aec6ff2dd6d7b9178c5cabb0c9d9d9f (patch)
tree52bbfd30acb1952f69b62af8911601e6ac6a175f
parentd2095594eac0307d1da74055436f5702540323cd (diff)
downloadpymemcache-3.3.0.tar.gz
Bump version to 3.3.0 and add changelog entries (#293)v3.3.0
-rw-r--r--ChangeLog.rst8
-rw-r--r--pymemcache/__init__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 2c42641..9a51239 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,14 @@
Changelog
=========
+New in version 3.3.0
+--------------------
+* ``HashClient`` can now be imported from the top-level ``pymemcache`` package
+ (e.g. ``pymemcache.HashClient``).
+* ``HashClient.get_many()`` now longer stores ``False`` for missing keys from
+ unavailable clients. Instead, the result won't contain the key at all.
+* Added missing ``HashClient.close()`` and ``HashClient.quit()``.
+
New in version 3.2.0
--------------------
* ``PooledClient`` and ``HashClient`` now support custom ``Client`` classes
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index ea84722..31e4c7c 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '3.2.0'
+__version__ = '3.3.0'
from pymemcache.client.base import Client # noqa
from pymemcache.client.base import PooledClient # noqa