summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2011-06-01 15:01:03 -0700
committerAndy McCurdy <andy@andymccurdy.com>2011-06-01 15:01:03 -0700
commitbd2663cd3776cbdbada540a26d19d4acb2432ad2 (patch)
treefb0320420568137bec4e6ea9e4720066e9413686
parent6c37ccf06cc5f8847d2ade19fb6b16503c6c4bf8 (diff)
downloadredis-py-bd2663cd3776cbdbada540a26d19d4acb2432ad2.tar.gz
version bump
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index c8413a6..dd061ae 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* 2.4.1 (in development)
+* 2.4.1
* Fixed a bug in the PythonParser if disconnect is called before connect.
* 2.4.0
* WARNING: 2.4 contains several backwards incompatible changes.
diff --git a/redis/__init__.py b/redis/__init__.py
index 1e8a9f5..202f51d 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -15,7 +15,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.0'
+__version__ = '2.4.1'
__all__ = [
'Redis', 'ConnectionPool', 'Connection', 'UnixDomainSocketConnection',