diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-09-30 13:59:44 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-09-30 13:59:44 -0700 |
commit | 7cc17a0cea1d25188c103745a7d0c24375e3a609 (patch) | |
tree | 15e4b8f021d56a5514b1adb744b9c9dee737f385 | |
parent | 360ce526fd5391a955005b27f327bda83acac6dd (diff) | |
download | node-7cc17a0cea1d25188c103745a7d0c24375e3a609.tar.gz |
Bump version to v0.5.8v0.5.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 |
4 files changed, 32 insertions, 9 deletions
@@ -1,4 +1,27 @@ -2011.09.16, Version 0.5.7 (unstable) +2011.09.30, Version 0.5.8 (unstable) + +* zlib bindings (isaacs) + +* Windows supports TTY ANSI escape codes (Bert Belder) + +* Debugger improvements (Fedor Indutny) + +* crypto: look up SSL errors with ERR_print_errors() (Ben Noordhuis) + +* dns callbacks go through MakeCallback now + +* Raise an error when a malformed package.json file is found. (Ben Leslie) + +* buffers: handle bad length argument in constructor (Ben Noordhuis) + +* #1726, unref process.stdout + +* Doc improvements (Ben Noordhuis, Fedor Indutny, koichik) + +* Upgrade libuv to fe18438 + + +2011.09.16, Version 0.5.7 (unstable), 558241166c4f3c516e5a448e676db0b57119212f * Upgrade V8 to 3.6.4 diff --git a/doc/index.html b/doc/index.html index ca0603a3b..2cf1bedc1 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.12/api">v0.4.12 docs</a></li> - <li><a href="http://nodejs.org/docs/v0.5.7/api">v0.5.7 docs</a></li> + <li><a href="http://nodejs.org/docs/v0.5.8/api">v0.5.8 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.12/api/index.html">Documentation</a> </ul> - <p>2011.09.16 v0.5.7 (unstable) + <p>2011.09.30 v0.5.8 (unstable) <ul class="release"> - <li><a href="http://nodejs.org/dist/v0.5.7/node-v0.5.7.tar.gz"><code>node-v0.5.7.tar.gz</code> Source code</a> - <li><a href="http://nodejs.org/dist/v0.5.7/node.exe"><code>node.exe</code> Windows executable</a> - <li><a href="http://nodejs.org/docs/v0.5.7/api/index.html">Documentation</a> + <li><a href="http://nodejs.org/dist/v0.5.8/node-v0.5.8.tar.gz"><code>node-v0.5.8.tar.gz</code> Source code</a> + <li><a href="http://nodejs.org/dist/v0.5.8/node.exe"><code>node.exe</code> Windows executable</a> + <li><a href="http://nodejs.org/docs/v0.5.8/api/index.html">Documentation</a> </ul> diff --git a/doc/template.html b/doc/template.html index 86cf4350f..71d307749 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ <html> <head> <meta charset="UTF-8" /> - <title>{{section}}Node.js v0.5.7 Manual & Documentation</title> + <title>{{section}}Node.js v0.5.8 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" /> @@ -11,7 +11,7 @@ <body> <div id="container"> <header> - <h1>Node.js v0.5.7 Manual & Documentation</h1> + <h1>Node.js v0.5.8 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 802f9c94d..40d5ca3c1 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 5 #define NODE_PATCH_VERSION 8 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |