Skip to content

Commit e8aef84

Browse files
committed
Bump version to v0.4.1
1 parent c2a6295 commit e8aef84

File tree

5 files changed

+38
-7
lines changed

5 files changed

+38
-7
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,4 @@ Joe Walnes <[email protected]>
161161
Koichi Kobayashi <[email protected]>
162162
Daniel Gröber <[email protected]>
163163
Konstantin Käfer <[email protected]>
164+
Richard Rodger <[email protected]>

ChangeLog

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
1+
2011.02.19, Version 0.4.1 (stable)
2+
3+
* Fixed field merging with progressive fields on writeHead()
4+
(TJ Holowaychuk)
5+
6+
* Make the repl respect node_modules folders (isaacs)
7+
8+
* Fix for DNS fail in HTTP request (Richard Rodger)
9+
10+
* Default to port 80 for http.request and http.get.
11+
12+
* Improve V8 support for Cygwin (Bert Belder)
13+
14+
* Fix fs.open param parsing. (Felix Geisendörfer)
15+
16+
* Fixed null signal.
17+
18+
* Fix various HTTP and HTTPS bugs
19+
20+
* cmake improvements (Tom Hughes)
21+
22+
* Fix: TLS sockets should not be writable after 'end'
23+
24+
* Fix os.cpus() on cygwin (Brian White)
25+
26+
* MinGW: OpenSSL support (Bert Belder)
27+
28+
* Upgrade V8 to 3.1.5, libev to 4.4.
29+
30+
131
2011.02.10, Version 0.4.0 (stable)
232

3-
* require() improvements (isaacs)
33+
* require() improvements (isaacs)
434
- understand package.json (isaacs)
535
- look for 'node_modules' dir
636

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/ry/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.0/api">v0.4.0 docs</a></li>
23+
<li><a href="http://nodejs.org/docs/v0.4.1/api">v0.4.1 docs</a></li>
2424
<br/>
2525
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
2626
</ol>
@@ -90,9 +90,9 @@ <h2 id="download">Download</h2>
9090
</p>
9191

9292
<p>
93-
2011.02.10
94-
<a href="http://nodejs.org/dist/node-v0.4.0.tar.gz">node-v0.4.0.tar.gz</a>
95-
(<a href="http://nodejs.org/docs/v0.4.0/api/index.html">Documentation</a>)
93+
2011.02.19
94+
<a href="http://nodejs.org/dist/node-v0.4.1.tar.gz">node-v0.4.1.tar.gz</a>
95+
(<a href="http://nodejs.org/docs/v0.4.1/api/index.html">Documentation</a>)
9696
</p>
9797

9898
<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 1
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
@@ -824,7 +824,7 @@ def build(bld):
824824
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
825825
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
826826
, 'PREFIX' : safe_path(program.env["PREFIX"])
827-
, 'VERSION' : '0.4.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
827+
, 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
828828
}
829829
return x
830830

0 commit comments

Comments
 (0)