Skip to content

Commit 11ae2a3

Browse files
author
Ask Solem
committed
Bumped version to 1.0.6 and updated changelog
1 parent 1e9a795 commit 11ae2a3

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

Changelog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
Change history
33
================
44

5+
1.0.6 [2010-06-30 09:57 A.M CEST]
6+
=================================
7+
8+
* RabbitMQ 1.8.0 has extended their exchange equivalence tests to
9+
include ``auto_delete`` and ``durable``. This broke the AMQP backend.
10+
11+
If you've already used the AMQP backend this means you have to
12+
delete the previous definitions::
13+
14+
$ PYTHONPATH=. camqadm exchange.delete celeryresults
15+
16+
or::
17+
18+
$ python manage.py camqadm exchange.delete celeryresults
19+
520
1.0.5 [2010-06-01 02:36 P.M CEST]
621
=================================
722

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
66

7-
:Version: 1.0.5
7+
:Version: 1.0.6
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/celery/
1010
:Source: http://github.com/ask/celery/

celery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Distributed Task Queue"""
22

3-
VERSION = (1, 0, 5)
3+
VERSION = (1, 0, 6)
44

55
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
66
__author__ = "Ask Solem"

docs/includes/introduction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
22

3-
:Version: 1.0.5
3+
:Version: 1.0.6
44
:Web: http://celeryproject.org/
55
:Download: http://pypi.python.org/pypi/celery/
66
:Source: http://github.com/ask/celery/

0 commit comments

Comments
 (0)