Skip to content

Commit

Permalink
Bump version to v0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jul 20, 2011
1 parent ddfc6b7 commit 1b8dd65
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 38 deletions.
18 changes: 17 additions & 1 deletion AUTHORS
Expand Up @@ -172,4 +172,20 @@ Scott McWhirter <scott.mcwhirter@joyent.com>
Jakub Lekstan <jakub.lekstan@dreamlab.pl>
Tim Baumann <tim@timbaumann.info>
Robert Mustacchi <rm@joyent.com>

George Miroshnykov <george.miroshnykov@gmail.com>
Marcel Laverdet <marcel@laverdet.com>
Alexandre Marangone <a.marangone@gmail.com>
Mark Cavage <mark.cavage@joyent.com>
Ryan Petrello <lists@ryanpetrello.com>
Siddharth Mahendraker <siddharth_mahen@hotmail.com>
Mathias Buus <m@ge.tt>
Yoshihiro KIKUCHI <yknetg@gmail.com>
Brett Kiefer <kiefer@gmail.com>
Mariano Iglesias <mariano@cricava.com>
Jörn Horstmann <git@jhorstmann.net>
Joe Shaw <joeshaw@litl.com>
Alex Xu <alex_y_xu@yahoo.ca>
Kip Gebhardt <kip.gebhardt@voxer.com>
Stefan Rusu <saltwaterc@gmail.com>
Wojciech Wnętrzak <w.wnetrzak@gmail.com>
Reid Burke <me@reidburke.com>
27 changes: 27 additions & 0 deletions ChangeLog
@@ -1,3 +1,30 @@
2011.07.19, Version 0.4.10 (stable)

* #394 Fix Buffer drops last null character in UTF-8

* #829 Backport r8577 from V8 (Ben Noordhuis)

* #877 Don't wait for HTTP Agent socket pool to establish connections.

* #915 Find kqueue on FreeBSD correctly (Brett Kiefer)

* #1085 HTTP: Fix race in abort/dispatch code (Stefan Rusu)

* #1274 debugger improvement (Yoshihiro Kikuchi)

* #1291 Properly respond to HEAD during end(body) hot path (Reid Burke)

* #1304 TLS: Fix race in abort/connection code (Stefan Rusu)

* #1360 Allow _ in url hostnames.

* Revert 37d529f8 - unbreaks debugger command parsing.

* Bring back global execScript

* Doc improvements


2011.06.29, Version 0.4.9 (stable)

* Improve documentation
Expand Down
34 changes: 15 additions & 19 deletions doc/index.html
Expand Up @@ -26,8 +26,8 @@
<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.4.9/api">v0.4.9 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.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 @@ -110,17 +110,18 @@ <h2 id="download">Download</h2>
<a href="http://github.com/joyent/node/tree/master">git repo</a>
</p>

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

<p>
2011.07.05 (unstable)
<a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>)
</p>
<p>2011.07.14 v0.5.1 (unstable)
<ul class="release">
<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>
<li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a>
</ul>


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

<p>
Expand Down
16 changes: 0 additions & 16 deletions doc/logos/index.html
Expand Up @@ -17,22 +17,6 @@
<title>Node.js Logos</title>
</head>
<body>
<div id="toc">
<ol>
<li><a href="/#download">Download</a></li>
<li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
<li><a href="/#about">About</a></li>
<li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.0/api/">v0.5.0 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>
<li><a href="https://github.com/joyent/node/wiki/Community">Community</a></li>
<li><a href="http://chat.nodejs.org/">Demo</a></li>
<li>Logos</li>
<li><a href="http://jobs.nodejs.org/">Jobs</a> <!-- JOBS --> </li>
</ol>
</div>
<div id="content">

<!-- <h1><a href="http://nodejs.org/">Node</a></h1> -->
Expand Down
4 changes: 4 additions & 0 deletions doc/pipe.css
Expand Up @@ -97,3 +97,7 @@ a:hover { text-decoration: underline; }
.desktops {
font-size: 14px;
}

.release {
margin: 0 0 0 2em;
}
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -28,7 +28,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 10
#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
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -866,7 +866,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
, 'VERSION' : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
, 'VERSION' : '0.4.10' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x

Expand Down

0 comments on commit 1b8dd65

Please sign in to comment.