Commit 0d1a3fe9 authored by indexzero's avatar indexzero

[dist] Version bump. 0.4.1. Fix package.json

parent cbb5fbcc
## 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)
......
# node-http-proxy - v0.4.0
# node-http-proxy - v0.4.1
<img src = "http://i.imgur.com/dSSUX.png"/>
......
......@@ -30,7 +30,7 @@
<span class="nx">events</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">&#39;events&#39;</span><span class="p">),</span>
<span class="nx">winston</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">&#39;winston&#39;</span><span class="p">),</span>
<span class="nx">ProxyTable</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="s1">&#39;./proxy-table&#39;</span><span class="p">).</span><span class="nx">ProxyTable</span><span class="p">,</span>
<span class="nx">maxSockets</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">&#182;</a> </div> <h3>Version 0.4.0</h3> </td> <td class="code"> <div class="highlight"><pre><span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">0</span><span class="p">];</span></pre></div> </td> </tr> <tr id="section-3"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-3">&#182;</a> </div> <h3>function _getAgent (host, port)</h3>
<span class="nx">maxSockets</span> <span class="o">=</span> <span class="mi">100</span><span class="p">;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">&#182;</a> </div> <h3>Version 0.4.1</h3> </td> <td class="code"> <div class="highlight"><pre><span class="nx">exports</span><span class="p">.</span><span class="nx">version</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">4</span><span class="p">,</span> <span class="mi">1</span><span class="p">];</span></pre></div> </td> </tr> <tr id="section-3"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-3">&#182;</a> </div> <h3>function _getAgent (host, port)</h3>
<h4>@host {string} Host of the agent to get</h4>
......
......@@ -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)
......
{
"name": "http-proxy",
"description": "A full-featured http reverse proxy for node.js",
"version": "0.4.0",
"version": "0.4.1",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"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" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment