mirror of https://github.com/celery/kombu.git
Bumped version to 1.0.0b1
This commit is contained in:
parent
b5f92c4929
commit
130823fa14
|
@ -2,7 +2,7 @@
|
|||
kombu - AMQP Messaging Framework for Python
|
||||
#############################################
|
||||
|
||||
:Version: 0.9.7
|
||||
:Version: 1.0.0b1
|
||||
|
||||
Synopsis
|
||||
========
|
||||
|
|
|
@ -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/"
|
||||
|
|
Loading…
Reference in New Issue