Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 11, 2011
1 parent 6cfce8f commit 95cc403
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

0.3.0 / 2011-08-11
==================

* Added search capabilities
* Added `workTime` stat
* Added removal of stale jobs example
* Added Queue-level job events, useful for removing stale jobs etc. Closes * Changed: lazy load reds search [David Wood]
* Fixed `Job#error` for modules that throw strings or emit `error` events with strings [guillermo]
#51
* Fixed `Job#remove(fn)`
* Fixed proxy issue with paths, use relative paths [booo]

0.2.0 / 2011-07-25
==================

Expand Down
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- job specific logging
- powered by Redis
- optional retries
- full-text search capabilities
- RESTful JSON API

## Creating Jobs
Expand Down
2 changes: 1 addition & 1 deletion lib/kue.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports = module.exports = Queue;
* Library version.
*/

exports.version = '0.2.0';
exports.version = '0.3.0';

/**
* Expose `Job`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kue"
, "version": "0.2.0"
, "version": "0.3.0"
, "description": "Feature rich priority job queue backed by redis"
, "keywords": ["redis", "job", "queue", "worker", "redis"]
, "author": "TJ Holowaychuk <tj@learnboost.com>"
Expand Down

0 comments on commit 95cc403

Please sign in to comment.