Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2011-11-19 01:09:59 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-11-19 02:43:03 +0400
commita4402f0b2e410b19375a1d5c5fb7fe7f66f3c7f8 (patch)
tree2b96fb7f764d01fc2f774335b41105798cce6a22
parent975f1930b1c6ec1ee1a9e52e603aec097a088720 (diff)
Bump version to v0.6.2v0.6.2
-rw-r--r--ChangeLog25
-rw-r--r--doc/index.html14
-rw-r--r--doc/template.html4
-rw-r--r--src/node_version.h2
4 files changed, 35 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a0b06aed9c..b6db61b0efe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2011.11.18, Version 0.6.2 (stable)
+
+ * doc improvements (Artur Adib, Trevor Burnham, Ryan Emery, Trent Mick)
+
+ * timers: remember extra setTimeout() arguments when timeout==0
+
+ * punycode: use Mathias Bynens's punycode library, it's more compliant
+
+ * repl: improved tab completion (Ryan Emery)
+
+ * buffer: fix range checks in .writeInt() functions (Lukasz Walukiewicz)
+
+ * tls: make cipher list configurable
+
+ * addons: make Buffer and ObjectWrap visible to Windows add-ons (Bert Belder)
+
+ * crypto: add PKCS#1 a.k.a RSA public key verification support
+
+ * windows: fix stdout writes when redirected to nul
+
+ * sunos: fix build on Solaris and Illumos
+
+ * Upgrade V8 to 3.6.6.8
+
+
2011.11.11, Version 0.6.1 (stable)
* doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA)
diff --git a/doc/index.html b/doc/index.html
index 7a641527e19..fb97c9121a4 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.1/api">v0.6.1 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.6.2/api">v0.6.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>
@@ -105,14 +105,14 @@ server.listen(1337, "127.0.0.1");
<h2 id="download">Download</h2>
- <p>2011.11.11 v0.6.1
+ <p>2011.11.18 v0.6.2
<ul class="release">
- <li><a href="http://nodejs.org/dist/v0.6.1/node-v0.6.1.tar.gz"><code>node-v0.6.1.tar.gz</code>
+ <li><a href="http://nodejs.org/dist/v0.6.2/node-v0.6.2.tar.gz"><code>node-v0.6.2.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
+ <li><a href="http://nodejs.org/dist/v0.6.2/node-v0.6.2.msi"><code>node-v0.6.2.msi</code> Windows installer</a>
+ <li><a href="http://nodejs.org/dist/v0.6.2/node-v0.6.2.pkg"><code>node-v0.6.2.pkg</code> Macintosh installer</a>
+ <li><a href="http://nodejs.org/docs/v0.6.2/api/index.html">Documentation</a>
+ <li><a href="http://nodejs.org/dist/v0.6.2">Other release files
(like <code>.exe</code> and <code>.pdb</code>)</a>
</ul>
diff --git a/doc/template.html b/doc/template.html
index 72e3e6803fe..8d3e56eaac6 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.1 Manual &amp; Documentation</title>
+ <title>{{section}}Node.js v0.6.2 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.1 Manual &amp; Documentation</h1>
+ <h1>Node.js v0.6.2 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 f816d8283fc..9f3a7d9c348 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 2
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)