Commit 25122b9 1 parent 77044ed commit 25122b9 Copy full SHA for 25122b9
File tree 5 files changed +28
-7
lines changed
5 files changed +28
-7
lines changed Original file line number Diff line number Diff line change @@ -164,3 +164,7 @@ Konstantin Käfer <github@kkaefer.com>
164
164
Richard Rodger <richard@ricebridge.com>
165
165
Andreas Reich <andreas@reich.name>
166
166
Dean McNamee <dean@gmail.com>
167
+ Trevor Burnham <trevor@databraid.com>
168
+ Zachary Scott <zachary.s.scott@gmail.com>
169
+ Arnout Kazemier <info@3rd-Eden.com>
170
+
Original file line number Diff line number Diff line change 1
- 2011.03.18, Version 0.4.3 (stable)
1
+ 2011.03.26, Version 0.4.4 (stable)
2
+
3
+ * CryptoStream.end shouldn't throw if not writable GH-820
4
+
5
+ * Drop out if connection destroyed before connect() GH-819
6
+
7
+ * expose https.Agent
8
+
9
+ * Correctly setsid in tty.open GH-815
10
+
11
+ * Bug fix for failed buffer construction
12
+
13
+ * Added support for removing .once listeners (GH-806)
14
+
15
+ * Upgrade V8 to 3.1.8.5
16
+
17
+
18
+ 2011.03.18, Version 0.4.3 (stable), c095ce1a1b41ca015758a713283bf1f0bd41e4c4
2
19
3
20
* Don't decrease server connection counter again if destroy() is called more
4
21
than once GH-431 (Andreas Reich, Anders Conbere)
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.3 /api "> v0.4.3 docs</ a > </ li >
27
+ < li > < a href ="http://nodejs.org/docs/v0.4.4 /api "> v0.4.4 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 >
@@ -106,9 +106,9 @@ <h2 id="download">Download</h2>
106
106
</ p >
107
107
108
108
< p >
109
- 2011.03.18
110
- < a href ="http://nodejs.org/dist/node-v0.4.3 .tar.gz "> node-v0.4.3 .tar.gz</ a >
111
- (< a href ="http://nodejs.org/docs/v0.4.3 /api/index.html "> Documentation</ a > )
109
+ 2011.03.26
110
+ < a href ="http://nodejs.org/dist/node-v0.4.4 .tar.gz "> node-v0.4.4 .tar.gz</ a >
111
+ (< a href ="http://nodejs.org/docs/v0.4.4 /api/index.html "> Documentation</ a > )
112
112
</ p >
113
113
114
114
< 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 4
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 @@ -870,7 +870,7 @@ def build(bld):
870
870
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
871
871
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
872
872
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
873
- , 'VERSION' : '0.4.3 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
873
+ , 'VERSION' : '0.4.4 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
874
874
}
875
875
return x
876
876
You can’t perform that action at this time.
0 commit comments