diff options
-rw-r--r-- | Changelog | 20 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | kombu/__init__.py | 2 |
3 files changed, 22 insertions, 2 deletions
@@ -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. diff --git a/kombu/__init__.py b/kombu/__init__.py index b0aea3a8..3ba6ba4d 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, 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' |