mirror of https://github.com/nodejs/node.git
parent
c2a62951f6
commit
e8aef84191
1
AUTHORS
1
AUTHORS
|
@ -161,3 +161,4 @@ Joe Walnes <joe@walnes.com>
|
|||
Koichi Kobayashi <koichik@improvement.jp>
|
||||
Daniel Gröber <dxld@darkboxed.org>
|
||||
Konstantin Käfer <github@kkaefer.com>
|
||||
Richard Rodger <richard@ricebridge.com>
|
||||
|
|
32
ChangeLog
32
ChangeLog
|
@ -1,6 +1,36 @@
|
|||
2011.02.19, Version 0.4.1 (stable)
|
||||
|
||||
* Fixed field merging with progressive fields on writeHead()
|
||||
(TJ Holowaychuk)
|
||||
|
||||
* Make the repl respect node_modules folders (isaacs)
|
||||
|
||||
* Fix for DNS fail in HTTP request (Richard Rodger)
|
||||
|
||||
* Default to port 80 for http.request and http.get.
|
||||
|
||||
* Improve V8 support for Cygwin (Bert Belder)
|
||||
|
||||
* Fix fs.open param parsing. (Felix Geisendörfer)
|
||||
|
||||
* Fixed null signal.
|
||||
|
||||
* Fix various HTTP and HTTPS bugs
|
||||
|
||||
* cmake improvements (Tom Hughes)
|
||||
|
||||
* Fix: TLS sockets should not be writable after 'end'
|
||||
|
||||
* Fix os.cpus() on cygwin (Brian White)
|
||||
|
||||
* MinGW: OpenSSL support (Bert Belder)
|
||||
|
||||
* Upgrade V8 to 3.1.5, libev to 4.4.
|
||||
|
||||
|
||||
2011.02.10, Version 0.4.0 (stable)
|
||||
|
||||
* require() improvements (isaacs)
|
||||
* require() improvements (isaacs)
|
||||
- understand package.json (isaacs)
|
||||
- look for 'node_modules' dir
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<li><a href="#download">Download</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="http://nodejs.org/docs/v0.4.0/api">v0.4.0 docs</a></li>
|
||||
<li><a href="http://nodejs.org/docs/v0.4.1/api">v0.4.1 docs</a></li>
|
||||
<br/>
|
||||
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
|
||||
</ol>
|
||||
|
@ -90,9 +90,9 @@ net.createServer(function (socket) {
|
|||
</p>
|
||||
|
||||
<p>
|
||||
2011.02.10
|
||||
<a href="http://nodejs.org/dist/node-v0.4.0.tar.gz">node-v0.4.0.tar.gz</a>
|
||||
(<a href="http://nodejs.org/docs/v0.4.0/api/index.html">Documentation</a>)
|
||||
2011.02.19
|
||||
<a href="http://nodejs.org/dist/node-v0.4.1.tar.gz">node-v0.4.1.tar.gz</a>
|
||||
(<a href="http://nodejs.org/docs/v0.4.1/api/index.html">Documentation</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_MINOR_VERSION 4
|
||||
#define NODE_PATCH_VERSION 1
|
||||
#define NODE_VERSION_IS_RELEASE 0
|
||||
#define NODE_VERSION_IS_RELEASE 1
|
||||
|
||||
#ifndef NODE_STRINGIFY
|
||||
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|
||||
|
|
2
wscript
2
wscript
|
@ -824,7 +824,7 @@ def build(bld):
|
|||
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
|
||||
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
|
||||
, 'PREFIX' : safe_path(program.env["PREFIX"])
|
||||
, 'VERSION' : '0.4.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
||||
, 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
||||
}
|
||||
return x
|
||||
|
||||
|
|
Loading…
Reference in New Issue