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

Commit de44eaf

Browse files
committed
Bump to v0.4.9
1 parent 1e7769d commit de44eaf

File tree

4 files changed

+41
-7
lines changed

4 files changed

+41
-7
lines changed

ChangeLog

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1-
2011.05.20, Version 0.4.8 (stable)
1+
2011.06.29, Version 0.4.9 (stable)
2+
3+
* Improve documentation
4+
5+
* #1095 error handling bug in stream.pipe() (Felix Geisendörfer)
6+
7+
* #1097 Fix a few leaks in node_crypto.cc (Ben Noordhuis)
8+
9+
* #562 #1078 Parse file:// urls properly (Ryan Petrello)
10+
11+
* #880 Option to disable SSLv2 (Jérémy Lal)
12+
13+
* #1087 Disabling SSL compression disabled with early OpenSSLs.
14+
15+
* #1144 debugger: don't allow users to input non-valid commands
16+
(Siddharth Mahendraker)
17+
18+
* Perf improvement for util.inherits
19+
20+
* #1166 Support for signature verification with RSA/DSA public keys
21+
(Mark Cavage)
22+
23+
* #1177 Remove node_modules lookup optimization to better support
24+
nested project structures (Mathias Buus)
25+
26+
* #1203 Add missing scope.Close to fs.sendfileSync
27+
28+
* #1187 Support multiple 'link' headers
29+
30+
* #1196 Fix -e/--eval can't load module from node_modules (Koichi Kobayashi)
31+
32+
* Upgrade V8 to 3.1.8.25, upgrade http-parser.
33+
34+
35+
2011.05.20, Version 0.4.8 (stable), 7dd22c26e4365698dc3efddf138c4d399cb912c8
236

337
* #974 Properly report traceless errors (isaacs)
438

doc/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<li><a href="#download">Download</a></li>
2727
<li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
2828
<li><a href="#about">About</a></li>
29-
<li><a href="http://nodejs.org/docs/v0.4.8/api">v0.4.8 docs</a></li>
29+
<li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li>
3030
<br/>
3131
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3232
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -108,9 +108,9 @@ <h2 id="download">Download</h2>
108108
</p>
109109

110110
<p>
111-
2011.05.20
112-
<a href="http://nodejs.org/dist/node-v0.4.8.tar.gz">node-v0.4.8.tar.gz</a>
113-
(<a href="http://nodejs.org/docs/v0.4.8/api/index.html">Documentation</a>)
111+
2011.06.29
112+
<a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a>
113+
(<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>)
114114
</p>
115115

116116
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

Lines changed: 1 addition & 1 deletion
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 9
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

Lines changed: 1 addition & 1 deletion
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.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
869+
, 'VERSION' : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
870870
}
871871
return x
872872

0 commit comments

Comments
 (0)