From 9bc5b6f8621fb2a37e84524c3e5b91aab9b45675 Mon Sep 17 00:00:00 2001 From: Marak Squires Date: Tue, 27 Jul 2010 21:40:55 -0400 Subject: [PATCH] removed extra self, updated colors requirement, bumped to version 0.1.3 --- lib/node-http-proxy.js | 2 -- package.json | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/node-http-proxy.js b/lib/node-http-proxy.js index 7c19d9c..444aadc 100644 --- a/lib/node-http-proxy.js +++ b/lib/node-http-proxy.js @@ -29,9 +29,7 @@ var sys = require('sys'), events = require('events'); exports.httpProxy = function () { - var self = this; this.emitter = new(events.EventEmitter); - // If we were passed more than two arguments, // assume the first two are request and response. if(arguments.length >= 2) { diff --git a/package.json b/package.json index c7c3496..7437e9d 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "http-proxy", "description": "A full-featured http reverse proxy for node.js", - "version": "0.1.2", + "version": "0.1.3", "author": "Charlie Robbins ", "contributors": [ { "name": "Marak Squires", "email": "marak.squires@gmail.com" } ], "keywords": ["reverse", "proxy", "http"], "dependencies": { - "colors": ">= 0.0.1" + "colors": ">= 0.0.3" }, "main": "./lib/node-http-proxy", "scripts": { "test": "vows" },