Skip to content

Commit a4402f0

Browse files
committed
Bump version to v0.6.2
1 parent 975f193 commit a4402f0

File tree

4 files changed

+35
-10
lines changed

4 files changed

+35
-10
lines changed

ChangeLog

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
2011.11.18, Version 0.6.2 (stable)
2+
3+
* doc improvements (Artur Adib, Trevor Burnham, Ryan Emery, Trent Mick)
4+
5+
* timers: remember extra setTimeout() arguments when timeout==0
6+
7+
* punycode: use Mathias Bynens's punycode library, it's more compliant
8+
9+
* repl: improved tab completion (Ryan Emery)
10+
11+
* buffer: fix range checks in .writeInt() functions (Lukasz Walukiewicz)
12+
13+
* tls: make cipher list configurable
14+
15+
* addons: make Buffer and ObjectWrap visible to Windows add-ons (Bert Belder)
16+
17+
* crypto: add PKCS#1 a.k.a RSA public key verification support
18+
19+
* windows: fix stdout writes when redirected to nul
20+
21+
* sunos: fix build on Solaris and Illumos
22+
23+
* Upgrade V8 to 3.6.6.8
24+
25+
126
2011.11.11, Version 0.6.1 (stable)
227

328
* doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA)

doc/index.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<li><a href="#download">Download</a></li>
2727
<li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</a></li>
2828
<li><a href="#about">About</a></li>
29-
<li><a href="http://nodejs.org/docs/v0.6.1/api">v0.6.1 docs</a></li>
29+
<li><a href="http://nodejs.org/docs/v0.6.2/api">v0.6.2 docs</a></li>
3030
<br/>
3131
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3232
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -105,14 +105,14 @@ <h2 id="video">Introduction</h2>
105105

106106
<h2 id="download">Download</h2>
107107

108-
<p>2011.11.11 v0.6.1
108+
<p>2011.11.18 v0.6.2
109109
<ul class="release">
110-
<li><a href="http://nodejs.org/dist/v0.6.1/node-v0.6.1.tar.gz"><code>node-v0.6.1.tar.gz</code>
110+
<li><a href="http://nodejs.org/dist/v0.6.2/node-v0.6.2.tar.gz"><code>node-v0.6.2.tar.gz</code>
111111
Source code</a> (<a href="https://github.com/joyent/node/wiki/Installation">build instructions</a>)
112-
<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>
113-
<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>
114-
<li><a href="http://nodejs.org/docs/v0.6.1/api/index.html">Documentation</a>
115-
<li><a href="http://nodejs.org/dist/v0.6.1">Other release files
112+
<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>
113+
<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>
114+
<li><a href="http://nodejs.org/docs/v0.6.2/api/index.html">Documentation</a>
115+
<li><a href="http://nodejs.org/dist/v0.6.2">Other release files
116116
(like <code>.exe</code> and <code>.pdb</code>)</a>
117117
</ul>
118118

doc/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="UTF-8" />
5-
<title>{{section}}Node.js v0.6.1 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.6.2 Manual &amp; Documentation</title>
66
<link type="image/x-icon" rel="icon" href="/favicon.ico" />
77
<link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" />
88
<link rel="stylesheet" href="assets/style.css" type="text/css" media="all" />
@@ -11,7 +11,7 @@
1111
<body>
1212
<div id="container">
1313
<header>
14-
<h1>Node.js v0.6.1 Manual &amp; Documentation</h1>
14+
<h1>Node.js v0.6.2 Manual &amp; Documentation</h1>
1515
<div id="gtoc">
1616
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
1717
</div>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 6
3131
#define NODE_PATCH_VERSION 2
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)