This repository was archived by the owner on Apr 22, 2023. It is now read-only.
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>
161
161
Koichi Kobayashi <koichik@improvement.jp>
162
162
Daniel Gröber <dxld@darkboxed.org>
163
163
Konstantin 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
+
1
31
2011.02.10, Version 0.4.0 (stable)
2
32
3
- * require() improvements (isaacs)
33
+ * require() improvements (isaacs)
4
34
- understand package.json (isaacs)
5
35
- look for 'node_modules' dir
6
36
Original file line number Diff line number Diff line change 20
20
< li > < a href ="#download "> Download</ a > </ li >
21
21
< li > < a href ="https://github.com/ry/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
22
22
< 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 >
24
24
< br />
25
25
< li > < B > < a href ="https://github.com/ry/node/wiki "> Wiki</ a > </ B > </ li >
26
26
</ ol >
@@ -90,9 +90,9 @@ <h2 id="download">Download</h2>
90
90
</ p >
91
91
92
92
< 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 > )
96
96
</ p >
97
97
98
98
< 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 7
7
#define NODE_MAJOR_VERSION 0
8
8
#define NODE_MINOR_VERSION 4
9
9
#define NODE_PATCH_VERSION 1
10
- #define NODE_VERSION_IS_RELEASE 0
10
+ #define NODE_VERSION_IS_RELEASE 1
11
11
12
12
#ifndef NODE_STRINGIFY
13
13
#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):
824
824
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
825
825
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
826
826
, '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.
828
828
}
829
829
return x
830
830
You can’t perform that action at this time.
0 commit comments