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 +39
-6
lines changed Expand file tree Collapse file tree 5 files changed +39
-6
lines changed Original file line number Diff line number Diff line change @@ -167,4 +167,7 @@ Dean McNamee <dean@gmail.com>
167
167
Trevor Burnham <trevor@databraid.com>
168
168
Zachary Scott <zachary.s.scott@gmail.com>
169
169
Arnout Kazemier <info@3rd-Eden.com>
170
+ George Stagas <gstagas@gmail.com>
171
+ Scott McWhirter <scott.mcwhirter@joyent.com>
172
+ Jakub Lekstan <jakub.lekstan@dreamlab.pl>
170
173
Original file line number Diff line number Diff line change
1
+ 2011.04.13, Version 0.4.6 (stable)
2
+
3
+ * Don't error on ENOTCONN from shutdown() #670
4
+
5
+ * Auto completion of built-in debugger suggests prefix match rather than
6
+ partial match. (koichik)
7
+
8
+ * circular reference in vm modules. #822 (Jakub Lekstan)
9
+
10
+ * http response.readable should be false after 'end' #867 (Abe Fettig)
11
+
12
+ * Implemenet os.cpus() and os.uptime() on Solaris (Scott McWhirter)
13
+
14
+ * fs.ReadStream: Allow omission of end option for range reads #801
15
+ (Felix Geisendörfer)
16
+
17
+ * Buffer.write() with UCS-2 should not be write partial char
18
+ #916 (koichik)
19
+
20
+ * Pass secureProtocol through on tls.Server creation (Theo Schlossnagle)
21
+
22
+ * TLS use RC4-SHA by default
23
+
24
+ * Don't strangely drop out of event loop on HTTPS client uploads #892
25
+
26
+ * Doc improvements
27
+
28
+ * Upgrade v8 to 3.1.8.10
29
+
30
+
1
31
2011.04.01, Version 0.4.5 (stable)
2
32
3
33
* Fix listener leak in stream.pipe() (Mikeal Rogers)
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.5 /api "> v0.4.5 docs</ a > </ li >
29
+ < li > < a href ="http://nodejs.org/docs/v0.4.6 /api "> v0.4.6 docs</ a > </ li >
30
30
< br />
31
31
< li > < B > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ B > </ li >
32
32
< li > < B > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ B > </ li >
@@ -108,9 +108,9 @@ <h2 id="download">Download</h2>
108
108
</ p >
109
109
110
110
< p >
111
- 2011.04.01
112
- < a href ="http://nodejs.org/dist/node-v0.4.5 .tar.gz "> node-v0.4.5 .tar.gz</ a >
113
- (< a href ="http://nodejs.org/docs/v0.4.5 /api/index.html "> Documentation</ a > )
111
+ 2011.04.13
112
+ < a href ="http://nodejs.org/dist/node-v0.4.6 .tar.gz "> node-v0.4.6 .tar.gz</ a >
113
+ (< a href ="http://nodejs.org/docs/v0.4.6 /api/index.html "> Documentation</ a > )
114
114
</ p >
115
115
116
116
< 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 6
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.5 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
875
+ , 'VERSION' : '0.4.6 ' # 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