diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-02-19 18:45:34 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-02-19 18:45:34 -0800 |
commit | e8aef84191bc2c1ba2bcaa54f30aabde7f03769b (patch) | |
tree | 3118c8a37812eb88a66ec32320a225cfd47e435b | |
parent | c2a62951f64d5584d76fea5865e9bd94a898ed8b (diff) | |
download | nodejs-e8aef84191bc2c1ba2bcaa54f30aabde7f03769b.tar.gz nodejs-e8aef84191bc2c1ba2bcaa54f30aabde7f03769b.tar.bz2 nodejs-e8aef84191bc2c1ba2bcaa54f30aabde7f03769b.zip |
Bump version to v0.4.1v0.4.1
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 32 | ||||
-rw-r--r-- | doc/index.html | 8 | ||||
-rw-r--r-- | src/node_version.h | 2 | ||||
-rw-r--r-- | wscript | 2 |
5 files changed, 38 insertions, 7 deletions
@@ -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> @@ -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 diff --git a/doc/index.html b/doc/index.html index 797b121b0..7ae602218 100644 --- a/doc/index.html +++ b/doc/index.html @@ -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> diff --git a/src/node_version.h b/src/node_version.h index f94feb262..6b1012837 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -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) @@ -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 |