summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2020-09-15 08:54:59 -0700
committerGitHub <noreply@github.com>2020-09-15 08:54:59 -0700
commit771d52c95371474493339f3df85492e25400fd54 (patch)
tree2b0096da9b8042980c6882eb33d8daa5e47696e9
parent94a6a69810bcf2fbb1ab3354d5271a05506174e8 (diff)
downloadpymemcache-771d52c95371474493339f3df85492e25400fd54.tar.gz
Prepare the v3.4.0 release (#298)
-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 9a51239..d0ae3fb 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,11 @@
Changelog
=========
+New in version 3.4.0
+--------------------
+* Added IPv6 support for TCP socket connections.
+* ``HashClient`` now supports UNIX sockets.
+
New in version 3.3.0
--------------------
* ``HashClient`` can now be imported from the top-level ``pymemcache`` package
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index 31e4c7c..f55c637 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '3.3.0'
+__version__ = '3.4.0'
from pymemcache.client.base import Client # noqa
from pymemcache.client.base import PooledClient # noqa