Skip to content

Commit 39280e1

Browse files
committedMar 3, 2011
Bump version to v0.4.2
1 parent fbe36a7 commit 39280e1

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed
 

‎ChangeLog

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,46 @@
1-
2011.02.19, Version 0.4.1 (stable)
1+
2011.03.02, Version 0.4.2 (stable)
2+
3+
* Improve docs.
4+
5+
* Fix process.on edge case with signal event (Alexis Sellier)
6+
7+
* Pragma HTTP header comma separation
8+
9+
* In addition to 'aborted' emit 'close' from incoming requests
10+
(Felix Geisendörfer)
11+
12+
* Fix memleak in vm.runInNewContext
13+
14+
* Do not cache modules that throw exceptions (Felix Geisendörfer)
15+
16+
* Build system changes for libnode (Aria Stewart)
17+
18+
* Read up the prototype of the 'env' object. (Nathan Rajlich)
19+
20+
* Add 'close' and 'aborted' events to Agent responses
21+
22+
* http: fix missing 'drain' events (Russell Haering)
23+
24+
* Fix process.stdout.end() throws ENOTSOCK error. (Koichi Kobayashi)
25+
26+
* REPL bug fixes (isaacs)
27+
28+
* node_modules folders should be highest priority (isaacs)
29+
30+
* URL parse more safely (isaacs)
31+
32+
* Expose errno with a string for dns/cares (Felix Geisendörfer)
33+
34+
* Fix tty.setWindowSize
35+
36+
* spawn: setuid after chdir (isaacs)
37+
38+
* SIGUSR1 should break the VM without delay
39+
40+
* Upgrade V8 to 3.1.8.
41+
42+
43+
2011.02.19, Version 0.4.1 (stable), e8aef84191bc2c1ba2bcaa54f30aabde7f03769b
244

345
* Fixed field merging with progressive fields on writeHead()
446
(TJ Holowaychuk)

‎doc/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<li><a href="#download">Download</a></li>
2121
<li><a href="https://github.com/joyent/node/raw/master/ChangeLog">ChangeLog</a></li>
2222
<li><a href="#about">About</a></li>
23-
<li><a href="http://nodejs.org/docs/v0.4.1/api">v0.4.1 docs</a></li>
23+
<li><a href="http://nodejs.org/docs/v0.4.2/api">v0.4.2 docs</a></li>
2424
<br/>
2525
<li><B><a href="https://github.com/joyent/node/wiki">Wiki</a></B></li>
2626
</ol>
@@ -91,9 +91,9 @@ <h2 id="download">Download</h2>
9191
</p>
9292

9393
<p>
94-
2011.02.19
95-
<a href="http://nodejs.org/dist/node-v0.4.1.tar.gz">node-v0.4.1.tar.gz</a>
96-
(<a href="http://nodejs.org/docs/v0.4.1/api/index.html">Documentation</a>)
94+
2011.03.02
95+
<a href="http://nodejs.org/dist/node-v0.4.2.tar.gz">node-v0.4.2.tar.gz</a>
96+
(<a href="http://nodejs.org/docs/v0.4.2/api/index.html">Documentation</a>)
9797
</p>
9898

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

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 4
99
#define NODE_PATCH_VERSION 2
10-
#define NODE_VERSION_IS_RELEASE 0
10+
#define NODE_VERSION_IS_RELEASE 1
1111

1212
#ifndef NODE_STRINGIFY
1313
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

‎wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ def build(bld):
843843
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
844844
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
845845
, 'PREFIX' : safe_path(program.env["PREFIX"])
846-
, 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
846+
, 'VERSION' : '0.4.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
847847
}
848848
return x
849849

0 commit comments

Comments
 (0)