Bump version to v0.3.8
This commit is contained in:
parent
4733d0b1f0
commit
9493b7563b
1
AUTHORS
1
AUTHORS
@ -157,3 +157,4 @@ Daniel Ennis <aikar@aikar.co>
|
|||||||
Carter Allen <CarterA@opt-6.com>
|
Carter Allen <CarterA@opt-6.com>
|
||||||
Greg Hughes <greg@ghughes.com>
|
Greg Hughes <greg@ghughes.com>
|
||||||
David Trejo <david.daniel.trejo@gmail.com>
|
David Trejo <david.daniel.trejo@gmail.com>
|
||||||
|
Joe Walnes <joe@walnes.com>
|
||||||
|
22
ChangeLog
22
ChangeLog
@ -1,3 +1,25 @@
|
|||||||
|
2011.02.04, Version 0.3.8 (unstable)
|
||||||
|
|
||||||
|
* Add req.abort() for client side requests.
|
||||||
|
|
||||||
|
* Add exception.code for easy testing:
|
||||||
|
Example: if (err.code == 'EADDRINUSE');
|
||||||
|
|
||||||
|
* Add process.stderr.
|
||||||
|
|
||||||
|
* require.main is the main module. (Isaac Schlueter)
|
||||||
|
|
||||||
|
* dgram: setMulticastTTL, setMulticastLoopback and addMembership.
|
||||||
|
(Joe Walnes)
|
||||||
|
|
||||||
|
* Fix throttling in TLS connections
|
||||||
|
|
||||||
|
* Add socket.bufferSize
|
||||||
|
|
||||||
|
* MinGW improvements (Bert Belder)
|
||||||
|
|
||||||
|
* Upgrade V8 to 3.1.1
|
||||||
|
|
||||||
2011.01.27, Version 0.3.7 (unstable)
|
2011.01.27, Version 0.3.7 (unstable)
|
||||||
|
|
||||||
* Expose agent in http and https client. (Mikeal Rogers)
|
* Expose agent in http and https client. (Mikeal Rogers)
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<li><a href="#download">Download</a></li>
|
<li><a href="#download">Download</a></li>
|
||||||
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
|
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
|
||||||
<li><a href="#about">About</a></li>
|
<li><a href="#about">About</a></li>
|
||||||
<li><a href="http://nodejs.org/docs/v0.3.7/api">v0.3.7 docs</a></li>
|
<li><a href="http://nodejs.org/docs/v0.3.8/api">v0.3.8 docs</a></li>
|
||||||
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
|
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
|
||||||
<br/>
|
<br/>
|
||||||
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
|
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
|
||||||
@ -96,9 +96,9 @@ net.createServer(function (socket) {
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Unstable: 2011.01.27
|
Unstable: 2011.02.04
|
||||||
<a href="http://nodejs.org/dist/node-v0.3.7.tar.gz">node-v0.3.7.tar.gz</a>
|
<a href="http://nodejs.org/dist/node-v0.3.8.tar.gz">node-v0.3.8.tar.gz</a>
|
||||||
(<a href="http://nodejs.org/docs/v0.3.7/api/index.html">Documentation</a>)
|
(<a href="http://nodejs.org/docs/v0.3.8/api/index.html">Documentation</a>)
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
|
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#define NODE_MAJOR_VERSION 0
|
#define NODE_MAJOR_VERSION 0
|
||||||
#define NODE_MINOR_VERSION 3
|
#define NODE_MINOR_VERSION 3
|
||||||
#define NODE_PATCH_VERSION 8
|
#define NODE_PATCH_VERSION 8
|
||||||
#define NODE_VERSION_IS_RELEASE 0
|
#define NODE_VERSION_IS_RELEASE 1
|
||||||
|
|
||||||
#ifndef NODE_STRINGIFY
|
#ifndef NODE_STRINGIFY
|
||||||
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|
||||||
|
2
wscript
2
wscript
@ -775,7 +775,7 @@ def build(bld):
|
|||||||
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
|
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
|
||||||
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
|
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
|
||||||
, 'PREFIX' : safe_path(program.env["PREFIX"])
|
, 'PREFIX' : safe_path(program.env["PREFIX"])
|
||||||
, 'VERSION' : '0.3.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
, 'VERSION' : '0.3.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
||||||
}
|
}
|
||||||
return x
|
return x
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user