Skip to content

Commit

Permalink
Release 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Apr 16, 2011
1 parent 08a05dc commit bf1bc51
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions History.md
@@ -1,4 +1,10 @@

0.5.6 / 2011-04-15
==================

* Added; expose utils, helpful for plugins
* Added; default both `Master#spawn()` and `Master#remove()` to 1

0.5.5 / 2011-04-05
==================

Expand Down
8 changes: 7 additions & 1 deletion lib/cluster.js
Expand Up @@ -22,7 +22,13 @@ exports = module.exports = start;
* Library version.
*/

exports.version = '0.5.5';
exports.version = '0.5.6';

/**
* Expose utils.
*/

exports.utils = require('./utils');

/**
* Start a new `Master` with the given `server`.
Expand Down
8 changes: 1 addition & 7 deletions lib/master.js
Expand Up @@ -88,7 +88,7 @@ var node = process.execPath;
* @api public
*/

var Master = exports = module.exports = function Master(server) {
var Master = module.exports = function Master(server) {
var self = this;
this.server = server;
this.plugins = [];
Expand Down Expand Up @@ -838,9 +838,3 @@ Master.prototype.kill = function(sig){
worker.proc.kill(sig);
});
};

/**
* Expose utils.
*/

exports.utils = utils;
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "cluster",
"description": "extensible multi-core server manager",
"keywords": ["server", "spark", "fugue", "tcp", "workers"],
"version": "0.5.5",
"version": "0.5.6",
"homepage": "http://learnboost.github.com/cluster",
"repository": "git://github.com/LearnBoost/cluster.git",
"author": "TJ Holowaychuk <tj@learnboost.com> (http://tjholowaychuk.com)",
Expand Down

0 comments on commit bf1bc51

Please sign in to comment.