mirror of https://github.com/celery/kombu.git
Bumps version to 3.0.12 and updates Changelog
This commit is contained in:
parent
f61144b6eb
commit
6a4d729984
20
Changelog
20
Changelog
|
@ -4,6 +4,26 @@
|
|||
Change history
|
||||
================
|
||||
|
||||
.. _version-3.0.12:
|
||||
|
||||
3.0.12
|
||||
======
|
||||
:release-date: 2014-02-09 03:30 P.M UTC
|
||||
:release-by: Ask Solem
|
||||
|
||||
- Now depends on :mod:`amqp` 1.4.3.
|
||||
|
||||
- Fixes Python 3.4 logging incompatibility (Issue #311).
|
||||
|
||||
- Redis: Now properly handles unknown pub/sub messages.
|
||||
|
||||
Fix contributed by Sam Stavinoha.
|
||||
|
||||
- amqplib: Fixed bug where more bytes were requested from the socket
|
||||
than necessary.
|
||||
|
||||
Fix contributed by Ionel Cristian Mărieș.
|
||||
|
||||
.. _version-3.0.11:
|
||||
|
||||
3.0.11
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
kombu - Messaging library for Python
|
||||
========================================
|
||||
|
||||
:Version: 3.0.11
|
||||
:Version: 3.0.12
|
||||
|
||||
`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, 11, '', '')
|
||||
VERSION = version_info_t(3, 0, 12, '', '')
|
||||
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
|
||||
__author__ = 'Ask Solem'
|
||||
__contact__ = 'ask@celeryproject.org'
|
||||
|
|
Loading…
Reference in New Issue