Bumps version to 2.5.0rc1 and updates Changelog

This commit is contained in:
Ask Solem 2012-10-23 15:38:42 +01:00
parent 0cb5a85f0e
commit de46ac4081
3 changed files with 3 additions and 2 deletions

View File

@ -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.

View File

@ -2,7 +2,7 @@
kombu - Messaging Framework for Python
========================================
:Version: 2.4.7
:Version: 2.5.0rc1
`Kombu` is a messaging framework for Python.

View File

@ -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'