File tree Expand file tree Collapse file tree 5 files changed +38
-7
lines changed
Expand file tree Collapse file tree 5 files changed +38
-7
lines changed Original file line number Diff line number Diff line change @@ -161,3 +161,4 @@ Joe Walnes <joe@walnes.com>
161161Koichi Kobayashi <koichik@improvement.jp>
162162Daniel Gröber <dxld@darkboxed.org>
163163Konstantin Käfer <github@kkaefer.com>
164+ Richard Rodger <richard@ricebridge.com>
Original file line number Diff line number Diff line change 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+
1312011.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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments