Bumped version to 1.0.1 and updated Changelog

This commit is contained in:
Ask Solem 2011-01-28 20:28:39 +01:00
parent 45e0086aed
commit c39bf4606c
3 changed files with 14 additions and 4 deletions

View File

@ -2,9 +2,19 @@
Change history Change history
================ ================
1.0.1
=====
* Redis: Now works with Linux (epoll)
1.0.0
=====
:release-date: 2011-01-28 12:00 P.M CEST
* Initial release
0.1.0 0.1.0
===== =====
:release-date: 2010-07-22 4:20 P.M CEST :release-date: 2010-07-22 4:20 P.M CEST
* Rewrite of carrot * Initial fork of carrot
* Initial release

View File

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

View File

@ -1,5 +1,5 @@
"""AMQP Messaging Framework for Python""" """AMQP Messaging Framework for Python"""
VERSION = (1, 0, 0) VERSION = (1, 0, 1)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:]) __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem" __author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org" __contact__ = "ask@celeryproject.org"