summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Charriere <nicholascharriere@gmail.com>2017-02-18 11:04:52 -0800
committerGitHub <noreply@github.com>2017-02-18 11:04:52 -0800
commitf8137fc4b0d0d5f2fee8b81f5d744e14f9d8dd2e (patch)
treeffe19d9cdd1c4871f38ff32ab97fdcb6c13b121c
parentdcdea28290f654b81a0b66179d032006d09a3ecf (diff)
parent19a728f0af188f80120efded431ce2da630f9cb7 (diff)
downloadpymemcache-f8137fc4b0d0d5f2fee8b81f5d744e14f9d8dd2e.tar.gz
Merge pull request #141 from pinterest/prelease-141
Release 1.4.1
-rw-r--r--ChangeLog.rst8
-rw-r--r--pymemcache/__init__.py2
-rw-r--r--setup.cfg2
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 246889c..95f3946 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,5 +1,13 @@
Change Log
==========
+New in version 1.4.1
+--------------------
+* Python 3 serializations [fixes](https://github.com/pinterest/pymemcache/pull/131)
+* Drop support for pypy3
+* Comment cleanup
+* Add gets_many to hash_client
+* Better checking for illegal chars in key
+
New in version 1.4.0
--------------------
* Unicode keys support. It is now possible to pass the flag `allow_unicode_keys` when creating the clients, thanks @jogo!
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index acf18f8..f66a4c6 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '1.4.0'
+__version__ = '1.4.1'
__author__ = "Charles Gordon"
diff --git a/setup.cfg b/setup.cfg
index f38836b..2284de6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.4.0
+current_version = 1.4.1
commit = False
tag = True