From 54912c2a0cc8af270aa3782b8182f5a9e851aca9 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Thu, 22 Jul 2010 16:19:46 +0200 Subject: [PATCH] Set version to 0.1.0 --- README.rst | 8 +++++--- kombu/__init__.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 3e6766d1..df70ed7d 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,13 @@ -############################################## +############################################# kombu - AMQP Messaging Framework for Python -############################################## +############################################# -:Version: 0.10.5 +:Version: 0.1.0 **THIS IS A REWRITE OF CARROT** +Carrot will be discontinued in favor of Kombu. + Proposed API:: from kombu.connection BrokerConnection diff --git a/kombu/__init__.py b/kombu/__init__.py index 447edf42..23cbec18 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -1,5 +1,5 @@ """AMQP Messaging Framework for Python""" -VERSION = (0, 10, 5) +VERSION = (0, 1, 0) __version__ = ".".join(map(str, VERSION)) __author__ = "Ask Solem" __contact__ = "askh@opera.com"