Skip to content

Commit d18ceba

Browse files
committedJan 20, 2012
2012.01.19, Version 0.6.8 (stable)
* Update V8 to 3.6.6.19 * Numeric key hash collision fix for V8 (Erik Corry, Fedor Indutny) * Add missing TTY key translations for F1-F5 on Windows (Brandon Benvie) * path.extname bugfix with . and .. paths (Bert Belder) * cluster: don't always kill the master on uncaughtException (Ben * Noordhuis) * Update npm to 1.1.0-2 (isaacs) * typed arrays: set class name (Ben Noordhuis) * zlib binding cleanup (isaacs, Bert Belder) * dgram: use slab memory allocator (Michael Bernstein) * fix segfault #2473
1 parent 4afc46d commit d18ceba

File tree

6 files changed

+40
-12
lines changed

6 files changed

+40
-12
lines changed
 

‎AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,8 @@ Dave Irvine <davman99@gmail.com>
253253
Ju-yeong Park <interruptz@gmail.com>
254254
Phil Sung <psung@dnanexus.com>
255255
Damon Oehlman <damon.oehlman@sidelab.com>
256+
Ryunosuke SATO <tricknotes.rs@gmail.com>
257+
Michael Bernstein <michaelrbernstein@gmail.com>
258+
Guillermo Rauch <rauchg@gmail.com>
259+
Dan Williams <dan@igniter.com>
260+
Brandon Benvie <brandon@bbenvie.com>

‎ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.01.06, Version 0.6.7 (stable)
1+
2012.01.19, Version 0.6.8 (stable)
2+
3+
* Update V8 to 3.6.6.19
4+
5+
* Numeric key hash collision fix for V8 (Erik Corry, Fedor Indutny)
6+
7+
* Add missing TTY key translations for F1-F5 on Windows (Brandon Benvie)
8+
9+
* path.extname bugfix with . and .. paths (Bert Belder)
10+
11+
* cluster: don't always kill the master on uncaughtException (Ben Noordhuis)
12+
13+
* Update npm to 1.1.0-2 (isaacs)
14+
15+
* typed arrays: set class name (Ben Noordhuis)
16+
17+
* zlib binding cleanup (isaacs, Bert Belder)
18+
19+
* dgram: use slab memory allocator (Michael Bernstein)
20+
21+
* fix segfault #2473
22+
23+
24+
2012.01.06, Version 0.6.7 (stable), d5a189acef14a851287ee555f7a39431fe276e1c
225

326
* V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry)
427

‎doc/index.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ <h2>Node.js in the Industry</h2>
7777
<a href="#" id="download-close">X</a>
7878
<img id="download-logo" src="download-logo.png" alt="node.js">
7979
<ul id="installers" class="clearfix">
80-
<li><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.msi">Windows Installer</a><br>node-v0.6.7.msi</li>
81-
<li><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.pkg">Macintosh Installer</a><br>node-v0.6.7.pkg</li>
82-
<li id="source"><a href="http://nodejs.org/dist/v0.6.7/node-v0.6.7.tar.gz">Source Code</a><br>node-v0.6.7.tar.gz</li>
80+
<li><a href="http://nodejs.org/dist/v0.6.8/node-v0.6.8.msi">Windows Installer</a><br>node-v0.6.8.msi</li>
81+
<li><a href="http://nodejs.org/dist/v0.6.8/node-v0.6.8.pkg">Macintosh Installer</a><br>node-v0.6.8.pkg</li>
82+
<li id="source"><a href="http://nodejs.org/dist/v0.6.8/node-v0.6.8.tar.gz">Source Code</a><br>node-v0.6.8.tar.gz</li>
8383
</ul>
8484
<ul id="documentation">
85-
<li><a href="https://raw.github.com/joyent/node/v0.6.7/ChangeLog">Change Log</a></li>
86-
<li><a href="http://nodejs.org/docs/v0.6.7/api/index.html">Documentation</a></li>
87-
<li><a href="http://nodejs.org/dist/v0.6.7">Other release files</a></li>
88-
<li><a href="https://raw.github.com/joyent/node/v0.6.7/LICENSE">License</a></li>
85+
<li><a href="https://raw.github.com/joyent/node/v0.6.8/ChangeLog">Change Log</a></li>
86+
<li><a href="http://nodejs.org/docs/v0.6.8/api/index.html">Documentation</a></li>
87+
<li><a href="http://nodejs.org/dist/v0.6.8">Other release files</a></li>
88+
<li><a href="https://raw.github.com/joyent/node/v0.6.8/LICENSE">License</a></li>
8989
<li><a href="https://github.com/joyent/node">Git Repository</a></li>
9090
<li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing
9191
with a Package Manager</a>

‎doc/logos/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ <h2>Desktop Background</h2>
6060
</div>
6161
</div>
6262
<div id="footer">
63-
<p>Copyright <a href="http://joyent.com">Joyent, Inc</a>., Node.js is a <a href="trademark-policy.pdf">trademark of Joyent, Inc</a>., <a href="https://raw.github.com/joyent/node/v0.6.7/LICENSE">View License</a></p>
63+
<p>Copyright <a href="http://joyent.com">Joyent, Inc</a>., Node.js is a <a href="trademark-policy.pdf">trademark of Joyent, Inc</a>., <a href="https://raw.github.com/joyent/node/v0.6.8/LICENSE">View License</a></p>
6464
</div>
6565

6666

‎doc/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>{{section}}Node.js v0.6.7 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.6.8 Manual &amp; Documentation</title>
66
<link rel="stylesheet" href="assets/style.css">
77
<link rel="stylesheet" href="assets/sh.css">
88
<link rel="canonical" href="http://nodejs.org/docs/latest/api/{{filename}}.html">
99
</head>
1010
<body>
1111
<div id="container">
1212
<header>
13-
<h1>Node.js v0.6.7 Manual &amp; Documentation</h1>
13+
<h1>Node.js v0.6.8 Manual &amp; Documentation</h1>
1414
<div id="gtoc">
1515
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
1616
</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 8
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)
Please sign in to comment.