From d3eb93176470b88c4b140cbd15a4583701b983e8 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Fri, 17 Jan 2014 16:49:30 +0000 Subject: [PATCH] Bumps version to 3.0.10 and updates Changelog --- Changelog | 29 +++++++++++++++++++++++++++++ README.rst | 2 +- kombu/__init__.py | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index b58e2721..c224a327 100644 --- a/Changelog +++ b/Changelog @@ -4,6 +4,35 @@ Change history ================ +.. _version-3.0.10: + +3.0.10 +====== +:release-date: 2014-01-17 04:00 P.M UTC +:release-by: Ask Solem + +- Now depends on :mod:`amqp` 1.4.1. + +- ``maybe_declare`` now raises a "recoverable connection error" if + the connection is disconnected instead of a :exc:`ChannelError` so that + the operation can be retried. + +- Redis: ``Consumer.cancel()`` is now thread safe. + + This fixes an issue when using gevent/eventlet and a + message is handled after the consumer is cancelled resulting + in a "message for queue without consumers" error. + +- Retry operations would not always respect the interval_start + value when calculating the time to sleep for (Issue #303). + + Fix contributed by Antoine Legrand. + +- Timer: Fixed "unhashable type" error on Python 3. + +- Hub: Do not attempt to unregister operations on an already closed + poller instance. + .. _version-3.0.9: 3.0.9 diff --git a/README.rst b/README.rst index d365cd12..82e34988 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ kombu - Messaging library for Python ======================================== -:Version: 3.0.9 +:Version: 3.0.10 `Kombu` is a messaging library for Python. diff --git a/kombu/__init__.py b/kombu/__init__.py index c0acde28..7fcc1c57 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -7,7 +7,7 @@ version_info_t = namedtuple( 'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'), ) -VERSION = version_info_t(3, 0, 9, '', '') +VERSION = version_info_t(3, 0, 10, '', '') __version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION) __author__ = 'Ask Solem' __contact__ = 'ask@celeryproject.org'