Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rgarcia committed Jul 13, 2012
2 parents 825e05a + cac8132 commit 89353b2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions History.md
@@ -1,4 +1,9 @@

0.4.0 / 2012-06-28
==================

* Added 0.8.0 support

0.3.4 / 2012-02-23
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/kue.js
Expand Up @@ -25,7 +25,7 @@ exports = module.exports = Queue;
* Library version.
*/

exports.version = '0.3.4';
exports.version = '0.4.0';

/**
* Expose `Job`.
Expand Down
1 change: 1 addition & 0 deletions lib/queue/job.js
Expand Up @@ -152,6 +152,7 @@ exports.get = function(id, fn){
job.id = id;
client.hgetall('q:job:' + job.id, function(err, hash){
if (err) return fn(err);
if (!hash) return fn(new Error('job "' + job.id + '" doesnt exist'));
if (!hash.type) return fn();
// TODO: really lame, change some methods so
// we can just merge these
Expand Down
17 changes: 8 additions & 9 deletions package.json
@@ -1,17 +1,16 @@
{
"name": "kue"
, "version": "0.3.4"
, "version": "0.4.0"
, "description": "Feature rich priority job queue backed by redis"
, "keywords": ["redis", "job", "queue", "worker", "redis"]
, "keywords": ["job", "queue", "worker", "redis"]
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "dependencies": {
"redis": "0.7.1"
, "express": "2.5.0"
, "jade": "~0.26.1"
, "stylus": "0.19.2"
, "nib": "0.2.0"
, "reds": "0.1.3"
"redis": "0.7.2"
, "express": "2.5.11"
, "jade": "0.26.3"
, "stylus": "0.27.2"
, "nib": "0.5.0"
, "reds": "0.1.4"
}
, "main": "index"
, "engines": { "node": ">= 0.4.0 < 0.7.0" }
}

0 comments on commit 89353b2

Please sign in to comment.