mirror of https://github.com/celery/kombu.git
Bumped version to 1.0.1 and updated Changelog
This commit is contained in:
parent
45e0086aed
commit
c39bf4606c
14
Changelog
14
Changelog
|
@ -2,9 +2,19 @@
|
|||
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
|
||||
=====
|
||||
:release-date: 2010-07-22 4:20 P.M CEST
|
||||
|
||||
* Rewrite of carrot
|
||||
* Initial release
|
||||
* Initial fork of carrot
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
kombu - AMQP Messaging Framework for Python
|
||||
#############################################
|
||||
|
||||
:Version: 1.0.0
|
||||
:Version: 1.0.1
|
||||
|
||||
Synopsis
|
||||
========
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""AMQP Messaging Framework for Python"""
|
||||
VERSION = (1, 0, 0)
|
||||
VERSION = (1, 0, 1)
|
||||
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
|
||||
__author__ = "Ask Solem"
|
||||
__contact__ = "ask@celeryproject.org"
|
||||
|
|
Loading…
Reference in New Issue