summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog31
-rw-r--r--doc/index.html21
-rw-r--r--doc/template.html4
-rw-r--r--src/node_version.h2
5 files changed, 46 insertions, 15 deletions
diff --git a/AUTHORS b/AUTHORS
index 0ce2307807..1fa19d3b27 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -232,3 +232,6 @@ Zachary Scott <zachary@zacharyscott.net>
Jordan Sissel <jls@semicomplete.com>
Matt Robenolt <matt@ydekproductions.com>
Jacob H.C. Kragh <jhckragh@gmail.com>
+Benjamin Pasero <benjamin.pasero@gmail.com>
+Scott Anderson <sanderson7@gmail.com>
+Yoji SHIDARA <dara@shidara.net>
diff --git a/ChangeLog b/ChangeLog
index f5adfa6091..2a0b06aed9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,33 @@
-2011.11.04, Version 0.6.0 (stable)
+2011.11.11, Version 0.6.1 (stable)
+
+* doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA)
+
+* crypto: make thread-safe (Ben Noordhuis)
+
+* fix process.kill error object
+
+* debugger: correctly handle source with multi-byte characters (Shigeki Ohtsu)
+
+* make stdout and stderr non-destroyable (Igor Zinkovsky)
+
+* fs: don't close uninitialized fs.watch handle (Ben Noordhuis)
+
+* #2026 fix man page install on BSDs (Ben Noordhuis)
+
+* #2040 fix unrecognized errno assert in uv_err_name
+
+* #2043 fs: mkdir() should call callback if mode is omitted
+
+* #2045 fs: fix fs.realpath on windows to return on error (Benjamin Pasero)
+
+* #2047 minor cluster improvements
+
+* #2052 readline get window columns correctly
+
+* Upgrade V8 to 3.6.6.7
+
+
+2011.11.04, Version 0.6.0 (stable), 865b077819a9271a29f982faaef99dc635b57fbc
* print undefined on undefined values in REPL (Nathan Rajlich)
diff --git a/doc/index.html b/doc/index.html
index abe2b0e4b4..7a641527e1 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -26,7 +26,7 @@
<li><a href="#download">Download</a></li>
<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.6.0/api">v0.6.0 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.6.1/api">v0.6.1 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>
@@ -105,23 +105,22 @@ server.listen(1337, "127.0.0.1");
<h2 id="download">Download</h2>
- <p>
- <a href="https://github.com/joyent/node/tree/master">git repo</a>
- </p>
-
- <p>2011.11.04 v0.6.0
+ <p>2011.11.11 v0.6.1
<ul class="release">
- <li><a href="http://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz"><code>node-v0.6.0.tar.gz</code> Source code</a>
- <li><a href="http://nodejs.org/dist/v0.6.0/node.exe"><code>node.exe</code> Windows executable</a>
- <li><a href="http://nodejs.org/docs/v0.6.0/api/index.html">Documentation</a>
+ <li><a href="http://nodejs.org/dist/v0.6.1/node-v0.6.1.tar.gz"><code>node-v0.6.1.tar.gz</code>
+ Source code</a> (<a href="https://github.com/joyent/node/wiki/Installation">build instructions</a>)
+ <li><a href="http://nodejs.org/dist/v0.6.1/node-v0.6.1.msi"><code>node-v0.6.1.msi</code> Windows installer</a>
+ <li><a href="http://nodejs.org/dist/v0.6.1/node-v0.6.1.pkg"><code>node-v0.6.1.pkg</code> Macintosh installer</a>
+ <li><a href="http://nodejs.org/docs/v0.6.1/api/index.html">Documentation</a>
+ <li><a href="http://nodejs.org/dist/v0.6.1">Other release files
+ (like <code>.exe</code> and <code>.pdb</code>)</a>
</ul>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
<p>
- For build instructions see
- <a href="https://github.com/joyent/node/wiki/Installation">https://github.com/joyent/node/wiki/Installation</a>
+ <a href="https://github.com/joyent/node/tree/master">git repository</a>
</p>
diff --git a/doc/template.html b/doc/template.html
index 9ae1cee9de..72e3e6803f 100644
--- a/doc/template.html
+++ b/doc/template.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8" />
- <title>{{section}}Node.js v0.6.0 Manual &amp; Documentation</title>
+ <title>{{section}}Node.js v0.6.1 Manual &amp; 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.6.0 Manual &amp; Documentation</h1>
+ <h1>Node.js v0.6.1 Manual &amp; 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 3797e7321b..396e8d86b6 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -29,7 +29,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 6
#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)