Bumped version to 1.0.0b1

This commit is contained in:
Ask Solem 2010-12-18 11:49:40 +01:00
parent b5f92c4929
commit 130823fa14
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
:Version: 0.9.7
:Version: 1.0.0b1
Synopsis
========

View File

@ -1,6 +1,6 @@
"""AMQP Messaging Framework for Python"""
VERSION = (0, 9, 7)
__version__ = ".".join(map(str, VERSION))
VERSION = (1, 0, 0, "b1")
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org"
__homepage__ = "http://github.com/ask/kombu/"