diff --git a/ChangeLog.rst b/ChangeLog.rst index 52595088..2c42641a 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,10 @@ Changelog ========= +New in version 3.2.0 +-------------------- +* ``PooledClient`` and ``HashClient`` now support custom ``Client`` classes + New in version 3.1.1 -------------------- * Improve ``MockMemcacheClient`` to behave even more like ``Client`` diff --git a/docs/conf.py b/docs/conf.py index 1f87dc9f..2ece7669 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = u'3.1' +version = u'3.2' # The full version, including alpha/beta/rc tags. -release = u'3.1.0' +release = u'3.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py index 34ec2d44..5e9379c9 100644 --- a/pymemcache/__init__.py +++ b/pymemcache/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.1.1' +__version__ = '3.2.0' from pymemcache.client.base import Client # noqa from pymemcache.client.base import PooledClient # noqa