summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2013-06-07 11:12:50 -0600
committerSean Reifschneider <jafo@tummy.com>2013-06-07 11:12:50 -0600
commit028cd753ad9aaf372a8f285ff9b9230898a38298 (patch)
treef529b0f510535a31f9dfea05e6943c1e4baa7975
parent8116cfefd7a582749d13bcefbd82e3eea304d534 (diff)
downloadpython-memcached-028cd753ad9aaf372a8f285ff9b9230898a38298.tar.gz
For 1.53 release.release-1.53
-rw-r--r--ChangeLog4
-rw-r--r--memcache.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ad10491..c9c5c76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun, 07 Jun 2013 11:12:18 -0600 Sean Reifschneider <jafo@tummy.com>
+
+ * 1.53 release.
+
* Fixing set_multi() so that if the server closes the connection
it will no longer raise AttributeError. Issue found and resolution
reviewed by Ben Hoyt.
diff --git a/memcache.py b/memcache.py
index 6f55665..9e511bd 100644
--- a/memcache.py
+++ b/memcache.py
@@ -82,7 +82,7 @@ valid_key_chars_re = re.compile('[\x21-\x7e\x80-\xff]+$')
# Original author: Evan Martin of Danga Interactive
__author__ = "Sean Reifschneider <jafo-memcached@tummy.com>"
-__version__ = "1.52"
+__version__ = "1.53"
__copyright__ = "Copyright (C) 2003 Danga Interactive"
# http://en.wikipedia.org/wiki/Python_Software_Foundation_License
__license__ = "Python Software Foundation License"