summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"