summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-11-02 16:54:19 +0000
committerAsk Solem <ask@celeryproject.org>2012-11-02 16:54:19 +0000
commitebb6ce205c7c079a03f5947647bf1fefec8464ad (patch)
tree3cc15c11d1578cbf97528fa2e9ffb3b9892dfa10
parent87b74872ee94ce1274e1280689c7583295bb9318 (diff)
downloadkombu-ebb6ce205c7c079a03f5947647bf1fefec8464ad.tar.gz
Bumps version to 2.4.8v2.4.8
-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 846a9585..3bc2f3aa 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
kombu - Messaging Framework for Python
========================================
-:Version: 2.4.7
+:Version: 2.4.8
`Kombu` is a messaging framework for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 58bdb52d..be37b9e3 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, 7)
+VERSION = (2, 4, 8)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'