summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-08-24 14:06:28 +0100
committerAsk Solem <ask@celeryproject.org>2012-08-24 14:06:28 +0100
commitb7d8a7fe7bbe31043af20a80d5ad7aa85115f589 (patch)
tree9ed5ba1b10c34e32d535770dafc4acf1bc848b91
parentc1eb70530200831b47243c0eaad29a3e1805dc82 (diff)
downloadkombu-b7d8a7fe7bbe31043af20a80d5ad7aa85115f589.tar.gz
Bumps version to 2.4.1v2.4.1
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 12fbdc47..4cbda03b 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
kombu - Messaging Framework for Python
========================================
-:Version: 2.4.0
+:Version: 2.4.1
`Kombu` is a messaging framework for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index c8f9d263..909acafb 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,7 +1,7 @@
"""Messaging Framework for Python"""
from __future__ import absolute_import
-VERSION = (2, 4, 0)
+VERSION = (2, 4, 1)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'