Skip to content

Commit

Permalink
Bumps version to 3.0.30 and updates Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Dec 7, 2015
1 parent b5929a9 commit a98382f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
kombu - Messaging library for Python
========================================

:Version: 3.0.29
:Version: 3.0.30

`Kombu` is a messaging library for Python.

Expand Down
2 changes: 1 addition & 1 deletion kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'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__ = '[email protected]'
Expand Down

0 comments on commit a98382f

Please sign in to comment.