diff --git a/Changelog b/Changelog index 4de1fce0..f3e9be44 100644 --- a/Changelog +++ b/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 diff --git a/README.rst b/README.rst index e965f040..4654960f 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu - AMQP Messaging Framework for Python ############################################# -:Version: 1.0.0 +:Version: 1.0.1 Synopsis ======== diff --git a/kombu/__init__.py b/kombu/__init__.py index e034923f..981c22e9 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -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"