summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2015-12-07 00:35:23 -0800
committerAsk Solem <ask@celeryproject.org>2015-12-07 00:35:23 -0800
commita98382f8b8564efd1e3db79bc38d9c0a8f723392 (patch)
treeba4a8153ba67b866add0d130f4259cf4be867eb3
parentb5929a992751bf1bbe3490fca8d6a19cb12a390a (diff)
downloadkombu-a98382f8b8564efd1e3db79bc38d9c0a8f723392.tar.gz
Bumps version to 3.0.30 and updates Changelogv3.0.30
-rw-r--r--Changelog28
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 30 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index e31b733e..36006c1f 100644
--- a/Changelog
+++ b/Changelog
@@ -4,6 +4,34 @@
Change history
================
+.. _version-3.0.30:
+
+3.0.30
+======
+:release-date: 2015-12-07 12:28 A.M PDT
+:release-by: Ask Solem
+
+- Fixes compatiblity with uuid in Python 2.7.11 and 3.5.1.
+
+ Fix contributed by Kai Groner.
+
+- Redis transport: Attempt at fixing problem with hanging consumer
+ after disconnected from server.
+
+- Event loop:
+ Attempt at fixing issue with 100% CPU when using the Redis transport,
+
+- Database transport: Fixed oracle compatiblity.
+
+ An "ORA-00907: missing right parenthesis" error could manifest when using
+ an Oracle database with the database transport.
+
+ Fix contributed by Deepak N.
+
+- Documentation fixes
+
+ Contributed by Tommaso Barbugli.
+
.. _version-3.0.29:
3.0.29
diff --git a/README.rst b/README.rst
index 7474d2ad..33718014 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================
-:Version: 3.0.29
+:Version: 3.0.30
`Kombu` is a messaging library for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index c7326df1..3e545691 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -11,7 +11,7 @@ version_info_t = namedtuple(
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)
-VERSION = version_info_t(3, 0, 29, '', '')
+VERSION = version_info_t(3, 0, 30, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'