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"