mirror of https://github.com/celery/kombu.git
Bumps version to 2.5.0rc1 and updates Changelog
This commit is contained in:
parent
0cb5a85f0e
commit
de46ac4081
|
@ -43,6 +43,7 @@
|
|||
|
||||
Connection('amqp://foo;amqp://bar')
|
||||
|
||||
- Now supports PyDev, PyCharm, pylint and other static code analysis tools.
|
||||
|
||||
- :class:`~kombu.entity.Queue` now supports multiple bindings.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
kombu - Messaging Framework for Python
|
||||
========================================
|
||||
|
||||
:Version: 2.4.7
|
||||
:Version: 2.5.0rc1
|
||||
|
||||
`Kombu` is a messaging framework for Python.
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
"""Messaging Framework for Python"""
|
||||
from __future__ import absolute_import
|
||||
|
||||
VERSION = (2, 4, 7)
|
||||
VERSION = (2, 5, 0, 'rc1')
|
||||
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
|
||||
__author__ = 'Ask Solem'
|
||||
__contact__ = 'ask@celeryproject.org'
|
||||
|
|
Loading…
Reference in New Issue