summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-05-06 14:34:13 +0100
committerAsk Solem <ask@celeryproject.org>2014-05-06 14:34:13 +0100
commiteae4dba4f298501a1b12119c3161912efc8edbb4 (patch)
tree9adbef8b6cea80a463f057b219b55c78d1a95afd
parent5b1a6e58fa796c1eb68f30ff9c56b66128bb43d3 (diff)
downloadkombu-eae4dba4f298501a1b12119c3161912efc8edbb4.tar.gz
Bumps version to 3.0.16 and updates Changelogv3.0.16
-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 37e58271..047ee32b 100644
--- a/Changelog
+++ b/Changelog
@@ -4,6 +4,26 @@
Change history
================
+.. _version-3.0.16:
+
+3.0.16
+======
+:release-date: 2014-05-06 01:00 P.M UTC
+:release-by: Ask Solem
+
+- ``kombu[librabbitmq]`` now depends on librabbitmq 1.5.1.
+
+- Redis: Fixes ``TypeError`` problem in ``unregister`` (Issue #342).
+
+ Fix contributed by Tobias Schottdorf.
+
+- Tests: Some unit tests accidentally required the `redis-py` library.
+
+ Fix contributed by Randy Barlow.
+
+- librabbitmq: Would crash when using an older version of :mod:`librabbitmq`,
+ now emits warning instead.
+
.. _version-3.0.15:
3.0.15
diff --git a/README.rst b/README.rst
index f985576b..76004580 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================
-:Version: 3.0.15
+:Version: 3.0.16
`Kombu` is a messaging library for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index f6b73012..deac30c4 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, 15, '', '')
+VERSION = version_info_t(3, 0, 16, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'