summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-02-09 15:22:09 +0000
committerAsk Solem <ask@celeryproject.org>2014-02-09 15:22:09 +0000
commit6a4d72998477d5b924ae789de459382d258db895 (patch)
treed6f15ade2fd79d00614a51a5cabb07dc31adc3f2
parentf61144b6eb169a68406715b23ad7c45b822abfff (diff)
downloadkombu-6a4d72998477d5b924ae789de459382d258db895.tar.gz
Bumps version to 3.0.12 and updates Changelog
-rw-r--r--Changelog20
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 22 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 5ab6d3ad..8e20743c 100644
--- a/Changelog
+++ b/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
diff --git a/README.rst b/README.rst
index 0338272b..0dd1d02e 100644
--- a/README.rst
+++ b/README.rst
@@ -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'