summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-09-12 17:34:36 +0100
committerAsk Solem <ask@celeryproject.org>2013-09-12 17:34:36 +0100
commitda1f3a601d537f0de178baea013766fcb36259b2 (patch)
treea739ac781e7e6dba36240efe46b74f8ac5532399
parenteb1caf3fbd1fe9ba68acfc53a0ba40e9238ac12e (diff)
downloadkombu-da1f3a601d537f0de178baea013766fcb36259b2.tar.gz
Version now 3.0rc1
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 8f8f492c..f2939399 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
kombu - Messaging Framework for Python
========================================
-:Version: 3.0.0a1
+:Version: 3.0.0rc1
`Kombu` is a messaging framework for Python.
diff --git a/kombu/__init__.py b/kombu/__init__.py
index aca461d7..e44ce144 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,7 +1,7 @@
"""Messaging Framework for Python"""
from __future__ import absolute_import
-VERSION = (3, 0, 0, 'a1')
+VERSION = (3, 0, 0, 'rc1')
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'