Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jan 26, 2012
1 parent 09db7dc commit e4ac29e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/index.js
Expand Up @@ -77,7 +77,7 @@ function defaultContext() {
}

ctx = new zmq.Context(io_threads);
process.on('exit', function() {
process.on('exit', function(){
// ctx.close();
ctx = null;
});
Expand Down Expand Up @@ -263,6 +263,7 @@ Socket.prototype.send = function(msg, flags) {
// the watcher noticing the signaller fd is readable.
Socket.prototype._flush = function() {
var self = this
, flushing = false
, args;

// Don't allow recursive flush invocation as it can lead to stack
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "zmq",
"version": "2.0.0",
"version": "2.0.1",
"description": "Bindings for node.js to zeromq",
"main": "index",
"repository": {
Expand All @@ -13,7 +13,7 @@
, "dox": "*"
},
"engines": {
"node": ">=0.3.0 <0.7.0"
"node": ">=0.3.0 < 0.7.0"
},
"contributors": [
"Justin Tulloss <justin.tulloss@gmail.com> (http://justin.harmonize.fm)",
Expand Down

0 comments on commit e4ac29e

Please sign in to comment.