From de46ac4081bda45297f8e6e7d9db42d0d9d97501 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 23 Oct 2012 15:38:42 +0100 Subject: [PATCH] Bumps version to 2.5.0rc1 and updates Changelog --- Changelog | 1 + README.rst | 2 +- kombu/__init__.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 13980675..737c7738 100644 --- a/Changelog +++ b/Changelog @@ -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. diff --git a/README.rst b/README.rst index 846a9585..d144c737 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu - Messaging Framework for Python ======================================== -:Version: 2.4.7 +:Version: 2.5.0rc1 `Kombu` is a messaging framework for Python. diff --git a/kombu/__init__.py b/kombu/__init__.py index 8ebf6e9c..29be1201 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -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'