diff --git a/CHANGELOG.md b/CHANGELOG.md index 0717c969e..7df0e592c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## ChangeLog for: node-http-proxy +## Version 0.4.1 - 3/20/2011 +- Include missing dependency in package.json (indexzero) + ## Version 0.4.0 - 3/20/2011 - Update for node.js 0.4.0 (indexzero) - Remove pool dependency in favor of http.Agent (indexzero) diff --git a/README.md b/README.md index 0077c1529..fc941ece1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# node-http-proxy - v0.4.0 +# node-http-proxy - v0.4.1 diff --git a/docs/node-http-proxy.html b/docs/node-http-proxy.html index fbcc8b172..6817cf0b6 100644 --- a/docs/node-http-proxy.html +++ b/docs/node-http-proxy.html @@ -30,7 +30,7 @@ events = require('events'), winston = require('winston'), ProxyTable = require('./proxy-table').ProxyTable, - maxSockets = 100;

Version 0.4.0

exports.version = [0, 4, 0];

function _getAgent (host, port)

+ maxSockets = 100;

Version 0.4.1

exports.version = [0, 4, 1];

function _getAgent (host, port)

@host {string} Host of the agent to get

diff --git a/lib/node-http-proxy.js b/lib/node-http-proxy.js index 5b30368bb..29f185a0d 100644 --- a/lib/node-http-proxy.js +++ b/lib/node-http-proxy.js @@ -33,9 +33,9 @@ var util = require('util'), maxSockets = 100; // -// ### Version 0.4.0 +// ### Version 0.4.1 // -exports.version = [0, 4, 0]; +exports.version = [0, 4, 1]; // // ### function _getAgent (host, port) diff --git a/package.json b/package.json index 040a09592..27f08ea3c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "http-proxy", "description": "A full-featured http reverse proxy for node.js", - "version": "0.4.0", + "version": "0.4.1", "author": "Charlie Robbins ", "contributors": [ { "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" }, @@ -17,7 +17,8 @@ "colors": ">= 0.3.0", "optimist": ">= 0.1.6", "request": ">= 1.9.0", - "vows": ">= 0.5.8" + "vows": ">= 0.5.8", + "winston": ">= 0.2.5" }, "main": "./lib/node-http-proxy", "bin": { "node-http-proxy": "./bin/node-http-proxy" },