Skip to content

Commit de21de9

Browse files
committed
2012.02.14, Version 0.7.4 (unstable)
* Upgrade V8 to 3.9.5 * Upgrade npm to 1.1.1 * build: Detect host_arch better (Karl Skomski) * debugger: export `debug_port` to `process` (Fedor Indutny) * api docs: CSS bug fixes (isaacs) * build: use -fPIC for native addons on UNIX (Nathan Rajlich) * Re-add top-level v8::Locker (Marcel Laverdet) * Move images out of the dist tarballs (isaacs) * libuv: Remove uv_export and uv_import (Ben Noordhuis) * build: Support x64 build on Windows (Igor Zinkovsky)
1 parent 0a4f5e8 commit de21de9

File tree

9 files changed

+44
-18
lines changed

9 files changed

+44
-18
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -261,3 +261,5 @@ Brandon Benvie <[email protected]>
261261
Nicolas LaCasse <[email protected]>
262262
Dan VerWeire <[email protected]>
263263
Matthew Fitzsimmons <[email protected]>
264+
Philip Tellis <[email protected]>
265+
Christopher Jeffrey <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.02.07, Version 0.7.3 (unstable)
1+
2012.02.14, Version 0.7.4 (unstable)
2+
3+
* Upgrade V8 to 3.9.5
4+
5+
* Upgrade npm to 1.1.1
6+
7+
* build: Detect host_arch better (Karl Skomski)
8+
9+
* debugger: export `debug_port` to `process` (Fedor Indutny)
10+
11+
* api docs: CSS bug fixes (isaacs)
12+
13+
* build: use -fPIC for native addons on UNIX (Nathan Rajlich)
14+
15+
* Re-add top-level v8::Locker (Marcel Laverdet)
16+
17+
* Move images out of the dist tarballs (isaacs)
18+
19+
* libuv: Remove uv_export and uv_import (Ben Noordhuis)
20+
21+
* build: Support x64 build on Windows (Igor Zinkovsky)
22+
23+
24+
2012.02.07, Version 0.7.3 (unstable), 99059aad8d654acda4abcfaa68df182b50f2ec90
225

326
* Upgrade V8 to 3.9.2
427

deps/v8/SConstruct

+2-1
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ V8_EXTRA_FLAGS = {
293293
'gcc': {
294294
'all': {
295295
'WARNINGFLAGS': ['-Wall',
296+
'-Werror',
296297
'-W',
297298
'-Wno-unused-parameter',
298299
'-Wnon-virtual-dtor']
@@ -389,7 +390,7 @@ MKSNAPSHOT_EXTRA_FLAGS = {
389390
DTOA_EXTRA_FLAGS = {
390391
'gcc': {
391392
'all': {
392-
'WARNINGFLAGS': ['-Wno-uninitialized'],
393+
'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized'],
393394
'CCFLAGS': GCC_DTOA_EXTRA_CCFLAGS
394395
}
395396
},

doc/about/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h1>Node's goal is to provide an easy way to build scalable
130130
<li><a href="http://twitter.com/nodejs" class="twitter">@nodejs</a></li>
131131
</ul>
132132

133-
<p>Copyright 2010 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.3/LICENSE">license</a>.</p>
133+
<p>Copyright 2012 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.4/LICENSE">license</a>.</p>
134134
</div>
135135

136136

doc/community/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ <h2 class="irc">IRC</h2>
180180
<li><a href="http://twitter.com/nodejs" class="twitter">@nodejs</a></li>
181181
</ul>
182182

183-
<p>Copyright 2010 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.3/LICENSE">license</a>.</p>
183+
<p>Copyright 2012 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.4/LICENSE">license</a>.</p>
184184
</div>
185185

186186
<script>

doc/index.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<a href="#download" class="button" id="downloadbutton">Download</a>
3333
<a href="http://nodejs.org/docs/latest/api/index.html" class="button" id="docsbutton">Docs</a>
34-
<p class="version">v0.7.3</p>
34+
<p class="version">v0.7.4</p>
3535
</div>
3636
<div id="quotes" class="clearfix">
3737
<h2>Node.js in the Industry</h2>
@@ -78,15 +78,15 @@ <h2>Node.js in the Industry</h2>
7878
<a href="#" id="download-close">X</a>
7979
<img id="download-logo" src="http://nodejs.org/images/download-logo.png" alt="node.js">
8080
<ul id="installers" class="clearfix">
81-
<li><a href="http://nodejs.org/dist/v0.7.3/node-v0.7.3.msi">Windows Installer</a><br>node-v0.7.3.msi</li>
82-
<li><a href="http://nodejs.org/dist/v0.7.3/node-v0.7.3.pkg">Macintosh Installer</a><br>node-v0.7.3.pkg</li>
83-
<li id="source"><a href="http://nodejs.org/dist/v0.7.3/node-v0.7.3.tar.gz">Source Code</a><br>node-v0.7.3.tar.gz</li>
81+
<li><a href="http://nodejs.org/dist/v0.7.4/node-v0.7.4.msi">Windows Installer</a><br>node-v0.7.4.msi</li>
82+
<li><a href="http://nodejs.org/dist/v0.7.4/node-v0.7.4.pkg">Macintosh Installer</a><br>node-v0.7.4.pkg</li>
83+
<li id="source"><a href="http://nodejs.org/dist/v0.7.4/node-v0.7.4.tar.gz">Source Code</a><br>node-v0.7.4.tar.gz</li>
8484
</ul>
8585
<ul id="documentation">
86-
<li><a href="https://raw.github.com/joyent/node/v0.7.3/ChangeLog">Change Log</a></li>
87-
<li><a href="http://nodejs.org/docs/v0.7.3/api/index.html">Documentation</a></li>
88-
<li><a href="http://nodejs.org/dist/v0.7.3">Other release files</a></li>
89-
<li><a href="https://raw.github.com/joyent/node/v0.7.3/LICENSE">License</a></li>
86+
<li><a href="https://raw.github.com/joyent/node/v0.7.4/ChangeLog">Change Log</a></li>
87+
<li><a href="http://nodejs.org/docs/v0.7.4/api/index.html">Documentation</a></li>
88+
<li><a href="http://nodejs.org/dist/v0.7.4">Other release files</a></li>
89+
<li><a href="https://raw.github.com/joyent/node/v0.7.4/LICENSE">License</a></li>
9090
<li><a href="https://github.com/joyent/node">Git Repository</a></li>
9191
<li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing
9292
with a Package Manager</a>
@@ -211,7 +211,7 @@ <h2>Explore Node.js</h2>
211211
<!-- <li><a hrfe="http://twitter.com/nodejs" class="twitter">@nodejs</a></li> -->
212212
</ul>
213213

214-
<p>Copyright 2010 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.3/LICENSE">license</a>.</p>
214+
<p>Copyright 2012 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.4/LICENSE">license</a>.</p>
215215
</div>
216216

217217

doc/logos/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ <h2>Desktop Background</h2>
8585
<li><a href="http://twitter.com/nodejs" class="twitter">@nodejs</a></li>
8686
</ul>
8787

88-
<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.7.3/LICENSE">View License</a></p>
88+
<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.7.4/LICENSE">View License</a></p>
8989
</div>
9090

9191

doc/template.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>{{section}}Node.js v0.7.3 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.7.4 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">
@@ -31,7 +31,7 @@
3131

3232
<div id="column1" class="interior">
3333
<header>
34-
<h1>Node.js v0.7.3 Manual &amp; Documentation</h1>
34+
<h1>Node.js v0.7.4 Manual &amp; Documentation</h1>
3535
<div id="gtoc">
3636
<p><a href="index.html" name="toc">Index</a> | <a href="all.html">View on single page</a></p>
3737
</div>
@@ -56,7 +56,7 @@ <h1>Node.js v0.7.3 Manual &amp; Documentation</h1>
5656
<li><a href="http://twitter.com/nodejs" class="twitter">@nodejs</a></li>
5757
</ul>
5858

59-
<p>Copyright 2010 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.3/LICENSE">license</a>.</p>
59+
<p>Copyright 2012 <a href="http://joyent.com">Joyent, Inc</a>, Node.js is a <a href="/trademark-policy.pdf">trademark</a> of Joyent, Inc. View <a href="https://raw.github.com/joyent/node/v0.7.4/LICENSE">license</a>.</p>
6060
</div>
6161

6262
<script src="assets/sh_main.js"></script>

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 7
3131
#define NODE_PATCH_VERSION 4
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)