From 1ae51018d277ed8474886f01dbe87cf324b5844a Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 18 Jul 2012 14:42:26 +0200 Subject: [PATCH] Update changelog for the upcoming release. --- CHANGES.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c48ba5ea..3571bedb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,15 @@ -### 0.1.3 -(Not released yet) +### 0.2.0 +(July 18th, 2012) -- Workers can accept explicit connections, like Queues. +- `q.enqueue()` accepts instance methods now, too. Objects will be pickle'd + along with the instance method, so beware. +- `q.enqueue()` accepts string specification of functions now, too. Example: + `q.enqueue("my.math.lib.fibonacci", 5)`. Useful if the worker and the + submitter of work don't share code bases. +- Job can be assigned custom attrs and they will be pickle'd along with the + rest of the job's attrs. Can be used when writing RQ extensions. +- Workers can now accept explicit connections, like Queues. +- Various bug fixes. ### 0.1.2