Bumps version to 3.0.17 and updates Changelog

This commit is contained in:
Ask Solem 2014-06-02 16:56:34 +01:00
parent 06863124d1
commit 96ed178cda
3 changed files with 11 additions and 7 deletions

View File

@ -13,21 +13,25 @@
- ``kombu[librabbitmq]`` now depends on librabbitmq 1.5.2.
- Async: Event loop now selectively removes file descriptors for the mode
it failed in, and keeps others (e.g read vs write).
Fix contributed by Roger Hu.
- CouchDB: Now works without userid set.
Fix contributed by Latitia M. Haskins.
- SQLAlchemy: Now supports recovery from connection errors.
Contributed by Felix Schwarz.
- Redis: Restore at shutdown now works when ack emulation is disabled.
- :func:`kombu.common.eventloop` accidentally swallowed socket errors.
- Adds :func:`kombu.utils.url.sanitize_url`
- Async: Event loop now selectively removes file descriptors for the mode
it failed in, and keeps others (e.g read vs write).
Fix contributed by Roger Hu.
.. _version-3.0.16:
3.0.16

View File

@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================
:Version: 3.0.16
:Version: 3.0.17
`Kombu` is a messaging library for Python.

View File

@ -7,7 +7,7 @@ version_info_t = namedtuple(
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)
VERSION = version_info_t(3, 0, 16, '', '')
VERSION = version_info_t(3, 0, 17, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'