Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

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
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function defaultContext() {
} }


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


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

0 comments on commit e4ac29e

Please sign in to comment.