mirror of https://github.com/celery/kombu.git
Bumps version to 3.0.10 and updates Changelog
This commit is contained in:
parent
d1ed0c27ff
commit
d3eb931764
29
Changelog
29
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
kombu - Messaging library for Python
|
||||
========================================
|
||||
|
||||
:Version: 3.0.9
|
||||
:Version: 3.0.10
|
||||
|
||||
`Kombu` is a messaging library for Python.
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue