Commit c85455a 1 parent c8e447e commit c85455a Copy full SHA for c85455a
File tree 5 files changed +26
-6
lines changed
5 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -170,4 +170,6 @@ Arnout Kazemier <info@3rd-Eden.com>
170
170
George Stagas <gstagas@gmail.com>
171
171
Scott McWhirter <scott.mcwhirter@joyent.com>
172
172
Jakub Lekstan <jakub.lekstan@dreamlab.pl>
173
+ Tim Baumann <tim@timbaumann.info>
174
+ Robert Mustacchi <rm@joyent.com>
173
175
Original file line number Diff line number Diff line change
1
+ 2011.04.22, Version 0.4.7 (stable)
2
+
3
+ * Don't emit error on ECONNRESET from read() #670
4
+
5
+ * Fix: Multiple pipes to the same stream were broken #929
6
+ (Felix Geisendörfer)
7
+
8
+ * URL parsing/formatting corrections #954 (isaacs)
9
+
10
+ * make it possible to do repl.start('', stream) (Wade Simmons)
11
+
12
+ * Add os.loadavg for SunOS (Robert Mustacchi)
13
+
14
+ * Fix timeouts with floating point numbers #897
15
+
16
+ * Improve docs.
17
+
18
+
1
19
2011.04.13, Version 0.4.6 (stable)
2
20
3
21
* Don't error on ENOTCONN from shutdown() #670
Original file line number Diff line number Diff line change 26
26
< li > < a href ="#download "> Download</ a > </ li >
27
27
< li > < a href ="https://github.com/joyent/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
28
28
< li > < a href ="#about "> About</ a > </ li >
29
- < li > < a href ="http://nodejs.org/docs/v0.4.6 /api "> v0.4.6 docs</ a > </ li >
29
+ < li > < a href ="http://nodejs.org/docs/v0.4.7 /api "> v0.4.7 docs</ a > </ li >
30
30
< br />
31
31
< li > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ li >
32
32
< li > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ li >
@@ -107,9 +107,9 @@ <h2 id="download">Download</h2>
107
107
</ p >
108
108
109
109
< p >
110
- 2011.04.13
111
- < a href ="http://nodejs.org/dist/node-v0.4.6 .tar.gz "> node-v0.4.6 .tar.gz</ a >
112
- (< a href ="http://nodejs.org/docs/v0.4.6 /api/index.html "> Documentation</ a > )
110
+ 2011.04.22
111
+ < a href ="http://nodejs.org/dist/node-v0.4.7 .tar.gz "> node-v0.4.7 .tar.gz</ a >
112
+ (< a href ="http://nodejs.org/docs/v0.4.7 /api/index.html "> Documentation</ a > )
113
113
</ p >
114
114
115
115
< 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 28
28
#define NODE_MAJOR_VERSION 0
29
29
#define NODE_MINOR_VERSION 4
30
30
#define NODE_PATCH_VERSION 7
31
- #define NODE_VERSION_IS_RELEASE 0
31
+ #define NODE_VERSION_IS_RELEASE 1
32
32
33
33
#ifndef NODE_STRINGIFY
34
34
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -872,7 +872,7 @@ def build(bld):
872
872
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
873
873
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
874
874
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
875
- , 'VERSION' : '0.4.6 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
875
+ , 'VERSION' : '0.4.7 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
876
876
}
877
877
return x
878
878
You can’t perform that action at this time.
0 commit comments