Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 11, 2011
1 parent 5bc1809 commit 170f2ad
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 15 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Expand Up @@ -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>
31 changes: 30 additions & 1 deletion 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)

Expand Down
21 changes: 10 additions & 11 deletions doc/index.html
Expand Up @@ -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>
Expand Down Expand Up @@ -105,23 +105,22 @@ <h2 id="video">Introduction</h2>

<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>


Expand Down
4 changes: 2 additions & 2 deletions doc/template.html
Expand Up @@ -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" />
Expand 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>
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -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)
Expand Down

0 comments on commit 170f2ad

Please sign in to comment.