Skip to content

Commit 1b8dd65

Browse files
committed
Bump version to v0.4.10
1 parent ddfc6b7 commit 1b8dd65

File tree

7 files changed

+65
-38
lines changed

7 files changed

+65
-38
lines changed

AUTHORS

+17-1
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,20 @@ Scott McWhirter <[email protected]>
172172
Jakub Lekstan <[email protected]>
173173
Tim Baumann <[email protected]>
174174
Robert Mustacchi <[email protected]>
175-
175+
George Miroshnykov <[email protected]>
176+
Marcel Laverdet <[email protected]>
177+
Alexandre Marangone <[email protected]>
178+
Mark Cavage <[email protected]>
179+
Ryan Petrello <[email protected]>
180+
Siddharth Mahendraker <[email protected]>
181+
Mathias Buus <[email protected]>
182+
Yoshihiro KIKUCHI <[email protected]>
183+
Brett Kiefer <[email protected]>
184+
Mariano Iglesias <[email protected]>
185+
Jörn Horstmann <[email protected]>
186+
187+
188+
Kip Gebhardt <[email protected]>
189+
Stefan Rusu <[email protected]>
190+
Wojciech Wnętrzak <[email protected]>
191+
Reid Burke <[email protected]>

ChangeLog

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
2011.07.19, Version 0.4.10 (stable)
2+
3+
* #394 Fix Buffer drops last null character in UTF-8
4+
5+
* #829 Backport r8577 from V8 (Ben Noordhuis)
6+
7+
* #877 Don't wait for HTTP Agent socket pool to establish connections.
8+
9+
* #915 Find kqueue on FreeBSD correctly (Brett Kiefer)
10+
11+
* #1085 HTTP: Fix race in abort/dispatch code (Stefan Rusu)
12+
13+
* #1274 debugger improvement (Yoshihiro Kikuchi)
14+
15+
* #1291 Properly respond to HEAD during end(body) hot path (Reid Burke)
16+
17+
* #1304 TLS: Fix race in abort/connection code (Stefan Rusu)
18+
19+
* #1360 Allow _ in url hostnames.
20+
21+
* Revert 37d529f8 - unbreaks debugger command parsing.
22+
23+
* Bring back global execScript
24+
25+
* Doc improvements
26+
27+
128
2011.06.29, Version 0.4.9 (stable)
229

330
* Improve documentation

doc/index.html

+15-19
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
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.4.9/api">v0.4.9 docs</a></li>
30-
<li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li>
29+
<li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li>
30+
<li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 docs</a></li>
3131
<br/>
3232
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3333
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -110,17 +110,18 @@ <h2 id="download">Download</h2>
110110
<a href="http://github.com/joyent/node/tree/master">git repo</a>
111111
</p>
112112

113-
<p>
114-
2011.06.29 (stable)
115-
<a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a>
116-
(<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>)
117-
</p>
113+
<p>2011.07.19 v0.4.10 (stable)
114+
<ul class="release">
115+
<li><a href="http://nodejs.org/dist/node-v0.4.10.tar.gz"><code>node-v0.4.10.tar.gz</code> Source Code</a>
116+
<li><a href="http://nodejs.org/docs/v0.4.10/api/index.html">Documentation</a>
117+
</ul>
118118

119-
<p>
120-
2011.07.05 (unstable)
121-
<a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a>
122-
(<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>)
123-
</p>
119+
<p>2011.07.14 v0.5.1 (unstable)
120+
<ul class="release">
121+
<li><a href="http://nodejs.org/dist/v0.5.1/node-v0.5.1.tar.gz"><code>node-v0.5.1.tar.gz</code> Source code</a>
122+
<li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a>
123+
<li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a>
124+
</ul>
124125

125126

126127
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
@@ -193,13 +194,8 @@ <h2 id="about">About</h2>
193194
But what about multiple-processor concurrency? Aren't threads
194195
necessary to scale programs to multi-core computers?
195196
</i>
196-
Processes are necessary to scale to multi-core computers, not
197-
memory-sharing threads. The fundamentals of scalable systems are
198-
fast networking and non-blocking design&mdash;the rest is message
199-
passing. In future versions, Node will be able to fork new
200-
processes (using the <a
201-
href="http://www.whatwg.org/specs/web-workers/current-work/"> Web
202-
Workers API </a>) which fits well into the current design.
197+
You can start new processes via <code>child_process.fork()</code>
198+
these other processes will be scheduled in parallel.
203199
</p>
204200

205201
<p>

doc/logos/index.html

-16
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@
1717
<title>Node.js Logos</title>
1818
</head>
1919
<body>
20-
<div id="toc">
21-
<ol>
22-
<li><a href="/#download">Download</a></li>
23-
<li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
24-
<li><a href="/#about">About</a></li>
25-
<li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li>
26-
<li><a href="http://nodejs.org/docs/v0.5.0/api/">v0.5.0 docs</a></li>
27-
<br>
28-
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
29-
<li><a href="http://blog.nodejs.org/">Blog</a></li>
30-
<li><a href="https://github.com/joyent/node/wiki/Community">Community</a></li>
31-
<li><a href="http://chat.nodejs.org/">Demo</a></li>
32-
<li>Logos</li>
33-
<li><a href="http://jobs.nodejs.org/">Jobs</a> <!-- JOBS --> </li>
34-
</ol>
35-
</div>
3620
<div id="content">
3721

3822
<!-- <h1><a href="http://nodejs.org/">Node</a></h1> -->

doc/pipe.css

+4
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,7 @@ a:hover { text-decoration: underline; }
9797
.desktops {
9898
font-size: 14px;
9999
}
100+
101+
.release {
102+
margin: 0 0 0 2em;
103+
}

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 4
3030
#define NODE_PATCH_VERSION 10
31-
#define NODE_VERSION_IS_RELEASE 0
31+
#define NODE_VERSION_IS_RELEASE 1
3232

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

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ def build(bld):
866866
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
867867
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
868868
, 'PREFIX' : safe_path(program.env["PREFIX"])
869-
, 'VERSION' : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
869+
, 'VERSION' : '0.4.10' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
870870
}
871871
return x
872872

0 commit comments

Comments
 (0)