summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-08-16 15:47:28 +0100
committerAsk Solem <ask@celeryproject.org>2013-08-16 15:47:28 +0100
commitf37e92d3602e984435fde28a7b658a3367a26586 (patch)
treec328c47b12e4e334e736f1f4a2edc4355e986fe8
parent5f290f5c6a5e60b038972b887097b13d246b280a (diff)
downloadkombu-f37e92d3602e984435fde28a7b658a3367a26586.tar.gz
Bumps version to 2.5.13 and updates Changelog
-rw-r--r--Changelog6
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 2cb65bfa..e1f288dc 100644
--- a/Changelog
+++ b/Changelog
@@ -8,7 +8,7 @@
2.5.13
======
-:release-date: 2013-08-16 15:30 P.M BST
+:release-date: 2013-08-16 16:00 P.M BST
- Now depends on :mod:`amqp` 1.0.13
@@ -26,6 +26,10 @@
Fix contributed by Sascha Peilicke.
+- ConsumerMixin now also restarts on channel related errors.
+
+ Fix contributed by Corentin Ardeois.
+
.. _version-2.5.12:
2.5.12
diff --git a/README.rst b/README.rst
index d56a87da..f979462e 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging Framework for Python
========================================
-:Version: 2.5.12
+:Version: 2.5.13
`Kombu` is a messaging framework for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 44132b64..1db359b3 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,7 +1,7 @@
"""Messaging Framework for Python"""
from __future__ import absolute_import
-VERSION = (2, 5, 12)
+VERSION = (2, 5, 13)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'