Changelog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. ==============
  2. Change history
  3. ==============
  4. 0.8.0 [2009-09-22 03:06 P.M CET]
  5. --------------------------------
  6. **BACKWARD INCOMPATIBLE CHANGES**
  7. * Add traceback to result value on failure.
  8. **NOTE** If you use the database backend you have to re-create the
  9. database table ``celery_taskmeta``.
  10. Contact the mailinglist or IRC channel listed in README for help
  11. doing this.
  12. * Database tables are now only created if the database backend is used,
  13. so if you change back to the database backend at some point,
  14. be sure to initialize tables (django: ``syncdb``, python: ``celeryinit``).
  15. (Note: This is only the case when using Django 1.1 or higher)
  16. * Now depends on ``carrot`` version 0.6.0.
  17. * Now depends on python-daemon 1.4.8
  18. **IMPORTANT CHANGES**
  19. * Celery can now be used in pure Python (outside of a Django project).
  20. This means celery is no longer Django specific.
  21. For more information see the FAQ entry
  22. `Can I use celery without Django?`_.
  23. .. _`Can I use celery without Django?`:
  24. http://ask.github.com/celery/faq.html#can-i-use-celery-without-django
  25. * Celery now supports task retries.
  26. See `Cookbook: Retrying Tasks`_ for more information.
  27. .. _`Cookbook: Retrying Tasks`:
  28. http://ask.github.com/celery/cookbook/task-retries.html
  29. * We now have an AMQP result store backend.
  30. It uses messages to publish task return value and status. And it's
  31. incredibly fast!
  32. See http://github.com/ask/celery/issues/closed#issue/6 for more info!
  33. * AMQP QoS (prefetch count) implemented:
  34. This to not receive more messages than we can handle.
  35. * Now redirects stdout/stderr to the celeryd logfile when detached
  36. * Now uses ``inspect.getargspec`` to only pass default arguments
  37. the task supports.
  38. * Add Task.on_success, .on_retry, .on_failure handlers
  39. See :meth:`celery.task.base.Task.on_success`,
  40. :meth:`celery.task.base.Task.on_retry`,
  41. :meth:`celery.task.base.Task.on_failure`,
  42. * ``celery.utils.gen_unique_id``: Workaround for
  43. http://bugs.python.org/issue4607
  44. * You can now customize what happens at worker start, at process init, etc
  45. by creating your own loaders. (see :mod:`celery.loaders.default`,
  46. :mod:`celery.loaders.djangoapp`, :mod:`celery.loaders`.)
  47. * Support for multiple AMQP exchanges and queues.
  48. This feature misses documentation and tests, so anyone interested
  49. is encouraged to improve this situation.
  50. * celeryd now survives a restart of the AMQP server!
  51. Automatically re-establish AMQP broker connection if it's lost.
  52. New settings:
  53. * AMQP_CONNECTION_RETRY
  54. Set to ``True`` to enable connection retries.
  55. * AMQP_CONNECTION_MAX_RETRIES.
  56. Maximum number of restarts before we give up. Default: ``100``.
  57. **NEWS**
  58. * Fix an incompatibility between python-daemon and multiprocessing,
  59. which resulted in the ``[Errno 10] No child processes`` problem when
  60. detaching.
  61. * Fixed a possible DjangoUnicodeDecodeError being raised when saving pickled
  62. data to Django's memcached cache backend.
  63. * Better Windows compatibility.
  64. * New version of the pickled field (taken from
  65. http://www.djangosnippets.org/snippets/513/)
  66. * New signals introduced: ``task_sent``, ``task_prerun`` and
  67. ``task_postrun``, see :mod:`celery.signals` for more information.
  68. * ``TaskSetResult.join`` caused ``TypeError`` when ``timeout=None``.
  69. Thanks Jerzy Kozera. Closes #31
  70. * ``views.apply`` should return ``HttpResponse`` instance.
  71. Thanks to Jerzy Kozera. Closes #32
  72. * ``PeriodicTask``: Save conversion of ``run_every`` from ``int``
  73. to ``timedelta`` to the class attribute instead of on the instance.
  74. * Exceptions has been moved to ``celery.exceptions``, but are still
  75. available in the previous module.
  76. * Try to rollback transaction and retry saving result if an error happens
  77. while setting task status with the database backend.
  78. * jail() refactored into :class:`celery.execute.ExecuteWrapper`.
  79. * ``views.apply`` now correctly sets mimetype to "application/json"
  80. * ``views.task_status`` now returns exception if status is RETRY
  81. * ``views.task_status`` now returns traceback if status is "FAILURE"
  82. or "RETRY"
  83. * Documented default task arguments.
  84. * Add a sensible __repr__ to ExceptionInfo for easier debugging
  85. * Fix documentation typo ``.. import map`` -> ``.. import dmap``.
  86. Thanks mikedizon
  87. 0.6.0 [2009-08-07 06:54 A.M CET]
  88. --------------------------------
  89. **IMPORTANT CHANGES**
  90. * Fixed a bug where tasks raising unpickleable exceptions crashed pool
  91. workers. So if you've had pool workers mysteriously dissapearing, or
  92. problems with celeryd stopping working, this has been fixed in this
  93. version.
  94. * Fixed a race condition with periodic tasks.
  95. * The task pool is now supervised, so if a pool worker crashes,
  96. goes away or stops responding, it is automatically replaced with
  97. a new one.
  98. * Task.name is now automatically generated out of class module+name, e.g.
  99. ``"djangotwitter.tasks.UpdateStatusesTask"``. Very convenient. No idea why
  100. we didn't do this before. Some documentation is updated to not manually
  101. specify a task name.
  102. **NEWS**
  103. * Tested with Django 1.1
  104. * New Tutorial: Creating a click counter using carrot and celery
  105. * Database entries for periodic tasks are now created at ``celeryd``
  106. startup instead of for each check (which has been a forgotten TODO/XXX
  107. in the code for a long time)
  108. * New settings variable: ``CELERY_TASK_RESULT_EXPIRES``
  109. Time (in seconds, or a `datetime.timedelta` object) for when after
  110. stored task results are deleted. For the moment this only works for the
  111. database backend.
  112. * ``celeryd`` now emits a debug log message for which periodic tasks
  113. has been launched.
  114. * The periodic task table is now locked for reading while getting
  115. periodic task status. (MySQL only so far, seeking patches for other
  116. engines)
  117. * A lot more debugging information is now available by turning on the
  118. ``DEBUG`` loglevel (``--loglevel=DEBUG``).
  119. * Functions/methods with a timeout argument now works correctly.
  120. * New: ``celery.strategy.even_time_distribution``:
  121. With an iterator yielding task args, kwargs tuples, evenly distribute
  122. the processing of its tasks throughout the time window available.
  123. * Log message ``Unknown task ignored...`` now has loglevel ``ERROR``
  124. * Log message ``"Got task from broker"`` is now emitted for all tasks, even if
  125. the task has an ETA (estimated time of arrival). Also the message now
  126. includes the ETA for the task (if any).
  127. * Acknowledgement now happens in the pool callback. Can't do ack in the job
  128. target, as it's not pickleable (can't share AMQP connection, etc)).
  129. * Added note about .delay hanging in README
  130. * Tests now passing in Django 1.1
  131. * Fixed discovery to make sure app is in INSTALLED_APPS
  132. * Previously overrided pool behaviour (process reap, wait until pool worker
  133. available, etc.) is now handled by ``multiprocessing.Pool`` itself.
  134. * Convert statistics data to unicode for use as kwargs. Thanks Lucy!
  135. 0.4.1 [2009-07-02 01:42 P.M CET]
  136. --------------------------------
  137. * Fixed a bug with parsing the message options (``mandatory``,
  138. ``routing_key``, ``priority``, ``immediate``)
  139. 0.4.0 [2009-07-01 07:29 P.M CET]
  140. --------------------------------
  141. * Adds eager execution. ``celery.execute.apply``|``Task.apply`` executes the
  142. function blocking until the task is done, for API compatiblity it
  143. returns an ``celery.result.EagerResult`` instance. You can configure
  144. celery to always run tasks locally by setting the
  145. ``CELERY_ALWAYS_EAGER`` setting to ``True``.
  146. * Now depends on ``anyjson``.
  147. * 99% coverage using python ``coverage`` 3.0.
  148. 0.3.20 [2009-06-25 08:42 P.M CET]
  149. ---------------------------------
  150. * New arguments to ``apply_async`` (the advanced version of
  151. ``delay_task``), ``countdown`` and ``eta``;
  152. >>> # Run 10 seconds into the future.
  153. >>> res = apply_async(MyTask, countdown=10);
  154. >>> # Run 1 day from now
  155. >>> res = apply_async(MyTask, eta=datetime.now() +
  156. ... timedelta(days=1)
  157. * Now unlinks the pidfile if it's stale.
  158. * Lots of more tests.
  159. * Now compatible with carrot >= 0.5.0.
  160. * **IMPORTANT** The ``subtask_ids`` attribute on the ``TaskSetResult``
  161. instance has been removed. To get this information instead use:
  162. >>> subtask_ids = [subtask.task_id for subtask in ts_res.subtasks]
  163. * ``Taskset.run()`` now respects extra message options from the task class.
  164. * Task: Add attribute ``ignore_result``: Don't store the status and
  165. return value. This means you can't use the
  166. ``celery.result.AsyncResult`` to check if the task is
  167. done, or get its return value. Only use if you need the performance
  168. and is able live without these features. Any exceptions raised will
  169. store the return value/status as usual.
  170. * Task: Add attribute ``disable_error_emails`` to disable sending error
  171. emails for that task.
  172. * Should now work on Windows (although running in the background won't
  173. work, so using the ``--detach`` argument results in an exception
  174. being raised.)
  175. * Added support for statistics for profiling and monitoring.
  176. To start sending statistics start ``celeryd`` with the
  177. ``--statistics`` option. Then after a while you can dump the results
  178. by running ``python manage.py celerystats``. See
  179. ``celery.monitoring`` for more information.
  180. * The celery daemon can now be supervised (i.e it is automatically
  181. restarted if it crashes). To use this start celeryd with the
  182. ``--supervised`` option (or alternatively ``-S``).
  183. * views.apply: View applying a task. Example::
  184. http://e.com/celery/apply/task_name/arg1/arg2//?kwarg1=a&kwarg2=b
  185. **NOTE** Use with caution, preferably not make this publicly
  186. accessible without ensuring your code is safe!
  187. * Refactored ``celery.task``. It's now split into three modules:
  188. * celery.task
  189. Contains ``apply_async``, ``delay_task``, ``discard_all``, and task
  190. shortcuts, plus imports objects from ``celery.task.base`` and
  191. ``celery.task.builtins``
  192. * celery.task.base
  193. Contains task base classes: ``Task``, ``PeriodicTask``,
  194. ``TaskSet``, ``AsynchronousMapTask``, ``ExecuteRemoteTask``.
  195. * celery.task.builtins
  196. Built-in tasks: ``PingTask``, ``DeleteExpiredTaskMetaTask``.
  197. 0.3.7 [2008-06-16 11:41 P.M CET]
  198. --------------------------------
  199. * **IMPORTANT** Now uses AMQP's ``basic.consume`` instead of
  200. ``basic.get``. This means we're no longer polling the broker for
  201. new messages.
  202. * **IMPORTANT** Default concurrency limit is now set to the number of CPUs
  203. available on the system.
  204. * **IMPORTANT** ``tasks.register``: Renamed ``task_name`` argument to
  205. ``name``, so
  206. >>> tasks.register(func, task_name="mytask")
  207. has to be replaced with:
  208. >>> tasks.register(func, name="mytask")
  209. * The daemon now correctly runs if the pidlock is stale.
  210. * Now compatible with carrot 0.4.5
  211. * Default AMQP connnection timeout is now 4 seconds.
  212. * ``AsyncResult.read()`` was always returning ``True``.
  213. * Only use README as long_description if the file exists so easy_install
  214. doesn't break.
  215. * ``celery.view``: JSON responses now properly set its mime-type.
  216. * ``apply_async`` now has a ``connection`` keyword argument so you
  217. can re-use the same AMQP connection if you want to execute
  218. more than one task.
  219. * Handle failures in task_status view such that it won't throw 500s.
  220. * Fixed typo ``AMQP_SERVER`` in documentation to ``AMQP_HOST``.
  221. * Worker exception e-mails sent to admins now works properly.
  222. * No longer depends on ``django``, so installing ``celery`` won't affect
  223. the preferred Django version installed.
  224. * Now works with PostgreSQL (psycopg2) again by registering the
  225. ``PickledObject`` field.
  226. * ``celeryd``: Added ``--detach`` option as an alias to ``--daemon``, and
  227. it's the term used in the documentation from now on.
  228. * Make sure the pool and periodic task worker thread is terminated
  229. properly at exit. (So ``Ctrl-C`` works again).
  230. * Now depends on ``python-daemon``.
  231. * Removed dependency to ``simplejson``
  232. * Cache Backend: Re-establishes connection for every task process
  233. if the Django cache backend is memcached/libmemcached.
  234. * Tyrant Backend: Now re-establishes the connection for every task
  235. executed.
  236. 0.3.3 [2009-06-08 01:07 P.M CET]
  237. --------------------------------
  238. * The ``PeriodicWorkController`` now sleeps for 1 second between checking
  239. for periodic tasks to execute.
  240. 0.3.2 [2009-06-08 01:07 P.M CET]
  241. --------------------------------
  242. * celeryd: Added option ``--discard``: Discard (delete!) all waiting
  243. messages in the queue.
  244. * celeryd: The ``--wakeup-after`` option was not handled as a float.
  245. 0.3.1 [2009-06-08 01:07 P.M CET]
  246. --------------------------------
  247. * The `PeriodicTask`` worker is now running in its own thread instead
  248. of blocking the ``TaskController`` loop.
  249. * Default ``QUEUE_WAKEUP_AFTER`` has been lowered to ``0.1`` (was ``0.3``)
  250. 0.3.0 [2009-06-08 12:41 P.M CET]
  251. --------------------------------
  252. **NOTE** This is a development version, for the stable release, please
  253. see versions 0.2.x.
  254. **VERY IMPORTANT:** Pickle is now the encoder used for serializing task
  255. arguments, so be sure to flush your task queue before you upgrade.
  256. * **IMPORTANT** TaskSet.run() now returns a celery.result.TaskSetResult
  257. instance, which lets you inspect the status and return values of a
  258. taskset as it was a single entity.
  259. * **IMPORTANT** Celery now depends on carrot >= 0.4.1.
  260. * The celery daemon now sends task errors to the registered admin e-mails.
  261. To turn off this feature, set ``SEND_CELERY_TASK_ERROR_EMAILS`` to
  262. ``False`` in your ``settings.py``. Thanks to Grégoire Cachet.
  263. * You can now run the celery daemon by using ``manage.py``::
  264. $ python manage.py celeryd
  265. Thanks to Grégoire Cachet.
  266. * Added support for message priorities, topic exchanges, custom routing
  267. keys for tasks. This means we have introduced
  268. ``celery.task.apply_async``, a new way of executing tasks.
  269. You can use ``celery.task.delay`` and ``celery.Task.delay`` like usual, but
  270. if you want greater control over the message sent, you want
  271. ``celery.task.apply_async`` and ``celery.Task.apply_async``.
  272. This also means the AMQP configuration has changed. Some settings has
  273. been renamed, while others are new::
  274. CELERY_AMQP_EXCHANGE
  275. CELERY_AMQP_PUBLISHER_ROUTING_KEY
  276. CELERY_AMQP_CONSUMER_ROUTING_KEY
  277. CELERY_AMQP_CONSUMER_QUEUE
  278. CELERY_AMQP_EXCHANGE_TYPE
  279. See the entry `Can I send some tasks to only some servers?`_ in the
  280. `FAQ`_ for more information.
  281. .. _`Can I send some tasks to only some servers?`:
  282. http://bit.ly/celery_AMQP_routing
  283. .. _`FAQ`: http://ask.github.com/celery/faq.html
  284. * Task errors are now logged using loglevel ``ERROR`` instead of ``INFO``,
  285. and backtraces are dumped. Thanks to Grégoire Cachet.
  286. * Make every new worker process re-establish it's Django DB connection,
  287. this solving the "MySQL connection died?" exceptions.
  288. Thanks to Vitaly Babiy and Jirka Vejrazka.
  289. * **IMOPORTANT** Now using pickle to encode task arguments. This means you
  290. now can pass complex python objects to tasks as arguments.
  291. * Removed dependency to ``yadayada``.
  292. * Added a FAQ, see ``docs/faq.rst``.
  293. * Now converts any unicode keys in task ``kwargs`` to regular strings.
  294. Thanks Vitaly Babiy.
  295. * Renamed the ``TaskDaemon`` to ``WorkController``.
  296. * ``celery.datastructures.TaskProcessQueue`` is now renamed to
  297. ``celery.pool.TaskPool``.
  298. * The pool algorithm has been refactored for greater performance and
  299. stability.
  300. 0.2.0 [2009-05-20 05:14 P.M CET]
  301. --------------------------------
  302. * Final release of 0.2.0
  303. * Compatible with carrot version 0.4.0.
  304. * Fixes some syntax errors related to fetching results
  305. from the database backend.
  306. 0.2.0-pre3 [2009-05-20 05:14 P.M CET]
  307. -------------------------------------
  308. * *Internal release*. Improved handling of unpickled exceptions,
  309. ``get_result`` now tries to recreate something looking like the
  310. original exception.
  311. 0.2.0-pre2 [2009-05-20 01:56 P.M CET]
  312. -------------------------------------
  313. * Now handles unpickleable exceptions (like the dynimically generated
  314. subclasses of ``django.core.exception.MultipleObjectsReturned``).
  315. 0.2.0-pre1 [2009-05-20 12:33 P.M CET]
  316. -------------------------------------
  317. * It's getting quite stable, with a lot of new features, so bump
  318. version to 0.2. This is a pre-release.
  319. * ``celery.task.mark_as_read()`` and ``celery.task.mark_as_failure()`` has
  320. been removed. Use ``celery.backends.default_backend.mark_as_read()``,
  321. and ``celery.backends.default_backend.mark_as_failure()`` instead.
  322. 0.1.15 [2009-05-19 04:13 P.M CET]
  323. ---------------------------------
  324. * The celery daemon was leaking AMQP connections, this should be fixed,
  325. if you have any problems with too many files open (like ``emfile``
  326. errors in ``rabbit.log``, please contact us!
  327. 0.1.14 [2009-05-19 01:08 P.M CET]
  328. ---------------------------------
  329. * Fixed a syntax error in the ``TaskSet`` class. (No such variable
  330. ``TimeOutError``).
  331. 0.1.13 [2009-05-19 12:36 P.M CET]
  332. ---------------------------------
  333. * Forgot to add ``yadayada`` to install requirements.
  334. * Now deletes all expired task results, not just those marked as done.
  335. * Able to load the Tokyo Tyrant backend class without django
  336. configuration, can specify tyrant settings directly in the class
  337. constructor.
  338. * Improved API documentation
  339. * Now using the Sphinx documentation system, you can build
  340. the html documentation by doing ::
  341. $ cd docs
  342. $ make html
  343. and the result will be in ``docs/.build/html``.
  344. 0.1.12 [2009-05-18 04:38 P.M CET]
  345. ---------------------------------
  346. * ``delay_task()`` etc. now returns ``celery.task.AsyncResult`` object,
  347. which lets you check the result and any failure that might have
  348. happened. It kind of works like the ``multiprocessing.AsyncResult``
  349. class returned by ``multiprocessing.Pool.map_async``.
  350. * Added dmap() and dmap_async(). This works like the
  351. ``multiprocessing.Pool`` versions except they are tasks
  352. distributed to the celery server. Example:
  353. >>> from celery.task import dmap
  354. >>> import operator
  355. >>> dmap(operator.add, [[2, 2], [4, 4], [8, 8]])
  356. >>> [4, 8, 16]
  357. >>> from celery.task import dmap_async
  358. >>> import operator
  359. >>> result = dmap_async(operator.add, [[2, 2], [4, 4], [8, 8]])
  360. >>> result.ready()
  361. False
  362. >>> time.sleep(1)
  363. >>> result.ready()
  364. True
  365. >>> result.result
  366. [4, 8, 16]
  367. * Refactored the task metadata cache and database backends, and added
  368. a new backend for Tokyo Tyrant. You can set the backend in your django
  369. settings file. e.g::
  370. CELERY_BACKEND = "database"; # Uses the database
  371. CELERY_BACKEND = "cache"; # Uses the django cache framework
  372. CELERY_BACKEND = "tyrant"; # Uses Tokyo Tyrant
  373. TT_HOST = "localhost"; # Hostname for the Tokyo Tyrant server.
  374. TT_PORT = 6657; # Port of the Tokyo Tyrant server.
  375. 0.1.11 [2009-05-12 02:08 P.M CET]
  376. ---------------------------------
  377. * The logging system was leaking file descriptors, resulting in
  378. servers stopping with the EMFILES (too many open files) error. (fixed)
  379. 0.1.10 [2009-05-11 12:46 P.M CET]
  380. ---------------------------------
  381. * Tasks now supports both positional arguments and keyword arguments.
  382. * Requires carrot 0.3.8.
  383. * The daemon now tries to reconnect if the connection is lost.
  384. 0.1.8 [2009-05-07 12:27 P.M CET]
  385. --------------------------------
  386. * Better test coverage
  387. * More documentation
  388. * celeryd doesn't emit ``Queue is empty`` message if
  389. ``settings.CELERYD_EMPTY_MSG_EMIT_EVERY`` is 0.
  390. 0.1.7 [2009-04-30 1:50 P.M CET]
  391. -------------------------------
  392. * Added some unittests
  393. * Can now use the database for task metadata (like if the task has
  394. been executed or not). Set ``settings.CELERY_TASK_META``
  395. * Can now run ``python setup.py test`` to run the unittests from
  396. within the ``testproj`` project.
  397. * Can set the AMQP exchange/routing key/queue using
  398. ``settings.CELERY_AMQP_EXCHANGE``, ``settings.CELERY_AMQP_ROUTING_KEY``,
  399. and ``settings.CELERY_AMQP_CONSUMER_QUEUE``.
  400. 0.1.6 [2009-04-28 2:13 P.M CET]
  401. -------------------------------
  402. * Introducing ``TaskSet``. A set of subtasks is executed and you can
  403. find out how many, or if all them, are done (excellent for progress
  404. bars and such)
  405. * Now catches all exceptions when running ``Task.__call__``, so the
  406. daemon doesn't die. This does't happen for pure functions yet, only
  407. ``Task`` classes.
  408. * ``autodiscover()`` now works with zipped eggs.
  409. * celeryd: Now adds curernt working directory to ``sys.path`` for
  410. convenience.
  411. * The ``run_every`` attribute of ``PeriodicTask`` classes can now be a
  412. ``datetime.timedelta()`` object.
  413. * celeryd: You can now set the ``DJANGO_PROJECT_DIR`` variable
  414. for ``celeryd`` and it will add that to ``sys.path`` for easy launching.
  415. * Can now check if a task has been executed or not via HTTP.
  416. * You can do this by including the celery ``urls.py`` into your project,
  417. >>> url(r'^celery/$', include("celery.urls"))
  418. then visiting the following url,::
  419. http://mysite/celery/$task_id/done/
  420. this will return a JSON dictionary like e.g:
  421. >>> {"task": {"id": $task_id, "executed": true}}
  422. * ``delay_task`` now returns string id, not ``uuid.UUID`` instance.
  423. * Now has ``PeriodicTasks``, to have ``cron`` like functionality.
  424. * Project changed name from ``crunchy`` to ``celery``. The details of
  425. the name change request is in ``docs/name_change_request.txt``.
  426. 0.1.0 [2009-04-24 11:28 A.M CET]
  427. --------------------------------
  428. * Initial release