From e4ac29e3ff3461b9937a51c88c44b0a2e35fa9ae Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Thu, 26 Jan 2012 07:45:25 -0800 Subject: [PATCH] Release 2.0.1 --- lib/index.js | 3 ++- package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/index.js b/lib/index.js index 7c1007a..ec91bf5 100644 --- a/lib/index.js +++ b/lib/index.js @@ -77,7 +77,7 @@ function defaultContext() { } ctx = new zmq.Context(io_threads); - process.on('exit', function() { + process.on('exit', function(){ // ctx.close(); ctx = null; }); @@ -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 diff --git a/package.json b/package.json index efadbf3..20c5e8c 100644 --- a/package.json +++ b/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": { @@ -13,7 +13,7 @@ , "dox": "*" }, "engines": { - "node": ">=0.3.0 <0.7.0" + "node": ">=0.3.0 < 0.7.0" }, "contributors": [ "Justin Tulloss (http://justin.harmonize.fm)",