Update changelog.

This commit is contained in:
Vincent Driessen 2012-08-27 14:22:02 +02:00
parent 35761a0d71
commit c0ab4f7966
1 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,16 @@
- Queue constructor now takes an optional `async=False` argument to bypass the
worker (for testing purposes).
- Jobs now carry status information. To get job status information, like
whether a job is queued, finished, or failed, use the property `status`, or
one of the new boolean accessor properties `is_queued`, `is_finished` or
`is_failed`.
- Jobs return values are always stored explicitly, even if they have to
explicit return value or return `None` (with given TTL of course). This
makes it possible to distinguish between a job that explicitly returned
`None` and a job that isn't finished yet (see `status` property).
- Remove `logbook` dependency (in favor of `logging`)