diff options
-rw-r--r-- | AUTHORS | 8 | ||||
-rw-r--r-- | ChangeLog | 25 | ||||
-rw-r--r-- | doc/index.html | 10 | ||||
-rw-r--r-- | doc/template.html | 4 | ||||
-rw-r--r-- | src/node_version.h | 2 | ||||
-rw-r--r-- | wscript | 2 |
6 files changed, 41 insertions, 10 deletions
@@ -189,3 +189,11 @@ Kip Gebhardt <kip.gebhardt@voxer.com> Stefan Rusu <saltwaterc@gmail.com> Wojciech Wnętrzak <w.wnetrzak@gmail.com> Reid Burke <me@reidburke.com> +Niklas Fiekas <niklas.fiekas@googlemail.com> +Adam Luikart <me@adamluikart.com> +avz <a.arepo@gmail.com> +Jeremy Selier <jeremy@jolicloud.com> +Igor Zinkovsky <igorzi@microsoft.com> +Shigeki Ohtsu <ohtsu@d.jp> +vegorov@chromium.org <vegorov@chromium.org> +Pierre-Alexandre St-Jean <pierrealexandre.stjean@gmail.com> @@ -1,4 +1,27 @@ -2011.07.14, Version 0.5.1 (unstable) +2011.07.22, Version 0.5.2 (unstable) + +* libuv improvements; named pipe support + +* #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis) + +* #1348 remove require.paths (isaacs) + +* #1349 Delimit NODE_PATH with ; on Windows (isaacs) + +* #1335 Remove EventEmitter from C++ + +* #1357 Load json files with require() (isaacs) + +* #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick) + +* Fixed: GC was being run too often. + +* Upgrade V8 to 3.4.14 + +* doc improvements + + +2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8 * #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev) diff --git a/doc/index.html b/doc/index.html index 4e3fc5c774..c0d31c4393 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,7 +27,7 @@ <li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</a></li> <li><a href="#about">About</a></li> <li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li> - <li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 docs</a></li> + <li><a href="http://nodejs.org/docs/v0.5.2/api">v0.5.2 docs</a></li> <br/> <li><a href="https://github.com/joyent/node/wiki">Wiki</a></li> <li><a href="http://blog.nodejs.org/">Blog</a></li> @@ -116,11 +116,11 @@ server.listen(1337, "127.0.0.1"); <li><a href="http://nodejs.org/docs/v0.4.10/api/index.html">Documentation</a> </ul> - <p>2011.07.14 v0.5.1 (unstable) + <p>2011.07.22 v0.5.2 (unstable) <ul class="release"> - <li><a href="http://nodejs.org/dist/v0.5.1/node-v0.5.1.tar.gz"><code>node-v0.5.1.tar.gz</code> Source code</a> - <li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a> - <li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a> + <li><a href="http://nodejs.org/dist/v0.5.2/node-v0.5.2.tar.gz"><code>node-v0.5.2.tar.gz</code> Source code</a> + <li><a href="http://nodejs.org/dist/v0.5.2/node.exe"><code>node.exe</code> Windows executable</a> + <li><a href="http://nodejs.org/docs/v0.5.2/api/index.html">Documentation</a> </ul> diff --git a/doc/template.html b/doc/template.html index 9127a0ddae..a3772832f0 100644 --- a/doc/template.html +++ b/doc/template.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html> <head> - <title>{{section}}Node.js v0.5.1 Manual & Documentation</title> + <title>{{section}}Node.js v0.5.2 Manual & Documentation</title> <link type="image/x-icon" rel="icon" href="/favicon.ico" /> <link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" /> <link rel="stylesheet" href="assets/style.css" type="text/css" media="all" /> @@ -10,7 +10,7 @@ <body> <div id="container"> <header> - <h1>Node.js v0.5.1 Manual & Documentation</h1> + <h1>Node.js v0.5.2 Manual & Documentation</h1> <div id="gtoc"> <p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p> </div> diff --git a/src/node_version.h b/src/node_version.h index 24b45b7a7b..7ecafd8c39 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -28,7 +28,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 5 #define NODE_PATCH_VERSION 2 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) @@ -897,7 +897,7 @@ def build(bld): , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'PREFIX' : safe_path(program.env["PREFIX"]) - , 'VERSION' : '0.5.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.5.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x |