Commit c095ce1 1 parent 5b161b0 commit c095ce1 Copy full SHA for c095ce1
File tree 5 files changed +34
-7
lines changed
5 files changed +34
-7
lines changed Original file line number Diff line number Diff line change @@ -162,3 +162,5 @@ Koichi Kobayashi <koichik@improvement.jp>
162
162
Daniel Gröber <dxld@darkboxed.org>
163
163
Konstantin Käfer <github@kkaefer.com>
164
164
Richard Rodger <richard@ricebridge.com>
165
+ Andreas Reich <andreas@reich.name>
166
+ Dean McNamee <dean@gmail.com>
Original file line number Diff line number Diff line change 1
- 2011.03.02, Version 0.4.2 (stable)
1
+ 2011.03.18, Version 0.4.3 (stable)
2
+
3
+ * Don't decrease server connection counter again if destroy() is called more
4
+ than once GH-431 (Andreas Reich, Anders Conbere)
5
+
6
+ * Documentation improvements (koichik)
7
+
8
+ * Fix bug with setMaxListeners GH-682
9
+
10
+ * Start up memory footprint improvement. (Tom Hughes)
11
+
12
+ * Solaris improvements.
13
+
14
+ * Buffer::Length(Buffer*) should not invoke itself recursively GH-759 (Ben
15
+ Noordhuis)
16
+
17
+ * TLS: Advertise support for client certs GH-774 (Theo Schlossnagle)
18
+
19
+ * HTTP Agent bugs: GH-787, GH-784, GH-803.
20
+
21
+ * Don't call GetMemoryUsage every 5 seconds.
22
+
23
+ * Upgrade V8 to 3.1.8.3
24
+
25
+
26
+ 2011.03.02, Version 0.4.2 (stable), 39280e1b5731f3fcd8cc42ad41b86cdfdcb6d58b
2
27
3
28
* Improve docs.
4
29
Original file line number Diff line number Diff line change 24
24
< li > < a href ="#download "> Download</ a > </ li >
25
25
< li > < a href ="https://github.com/joyent/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
26
26
< li > < a href ="#about "> About</ a > </ li >
27
- < li > < a href ="http://nodejs.org/docs/v0.4.2 /api "> v0.4.2 docs</ a > </ li >
27
+ < li > < a href ="http://nodejs.org/docs/v0.4.3 /api "> v0.4.3 docs</ a > </ li >
28
28
< br />
29
29
< li > < B > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ B > </ li >
30
30
< li > < B > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ B > </ li >
@@ -96,9 +96,9 @@ <h2 id="download">Download</h2>
96
96
</ p >
97
97
98
98
< p >
99
- 2011.03.02
100
- < a href ="http://nodejs.org/dist/node-v0.4.2 .tar.gz "> node-v0.4.2 .tar.gz</ a >
101
- (< a href ="http://nodejs.org/docs/v0.4.2 /api/index.html "> Documentation</ a > )
99
+ 2011.03.18
100
+ < a href ="http://nodejs.org/dist/node-v0.4.3 .tar.gz "> node-v0.4.3 .tar.gz</ a >
101
+ (< a href ="http://nodejs.org/docs/v0.4.3 /api/index.html "> Documentation</ a > )
102
102
</ p >
103
103
104
104
< 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 3
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 @@ -868,7 +868,7 @@ def build(bld):
868
868
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
869
869
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
870
870
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
871
- , 'VERSION' : '0.4.2 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
871
+ , 'VERSION' : '0.4.3 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
872
872
}
873
873
return x
874
874
You can’t perform that action at this time.
0 commit comments