node-statsd-client
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "node-statsd-client", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Statsd client for node.js", | ||
@@ -5,0 +5,0 @@ "keywords": ["statsd", "client"], |
@@ -24,2 +24,7 @@ # Node.js Statsd Client | ||
### 1.0.1 / 2012-06-21 | ||
* Fixed global leak of Client (thanks to sreuter) | ||
### 1.0.0 / 2012-06-07 | ||
@@ -34,2 +39,7 @@ | ||
## Contributors | ||
* [sreuter](https://github.com/sreuter) | ||
## Whishlist | ||
@@ -36,0 +46,0 @@ |
@@ -7,3 +7,3 @@ var dgram = require("dgram"), | ||
Client = function(host, port) { | ||
var Client = function(host, port) { | ||
this.host = host; | ||
@@ -10,0 +10,0 @@ this.port = port; |
2532
48