diff options
-rw-r--r-- | ChangeLog.rst | 8 | ||||
-rw-r--r-- | pymemcache/__init__.py | 2 |
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 |