File tree Expand file tree Collapse file tree 5 files changed +46
-8
lines changed
Expand file tree Collapse file tree 5 files changed +46
-8
lines changed Original file line number Diff line number Diff line change @@ -152,4 +152,8 @@ Theo Schlossnagle <jesus@omniti.com>
152152Kai Chen <kaichenxyz@gmail.com>
153153Daniel C <333222@gmail.com>
154154Mihai Călin Bazon <mihai@bazon.net>
155-
155+ Ali Farhadi <a.farhadi@gmail.com>
156+ Daniel Ennis <aikar@aikar.co>
157+ Carter Allen <CarterA@opt-6.com>
158+ Greg Hughes <greg@ghughes.com>
159+ David Trejo <david.daniel.trejo@gmail.com>
Original file line number Diff line number Diff line change 1- 2011.01.21, Version 0.3.6 (unstable)
1+ 2011.01.27, Version 0.3.7 (unstable)
2+
3+ * Expose agent in http and https client. (Mikeal Rogers)
4+
5+ * Fix bug in http request's end method. (Ali Farhadi)
6+
7+ * MinGW: better net support (Bert Belder)
8+
9+ * fs.open should set FD_CLOEXEC
10+
11+ * DTrace probes (Bryan Cantrill)
12+
13+ * REPL fixes and improvements (isaacs, Bert Belder)
14+
15+ * Fix many bugs with legacy http.Client interface
16+
17+ * Deprecate process.assert. Use require('assert').ok
18+
19+ * Add callback parameter to socket.setTimeout(). (Ali Farhadi)
20+
21+ * Fixing bug in http request default encoding (Ali Farhadi)
22+
23+ * require: A module ID with a trailing slash must be a dir.
24+ (isaacs)
25+
26+ * Add ext_key_usage to getPeerCertificate (Greg Hughes)
27+
28+ * Error when child_process.exec hits maxBuffer.
29+
30+ * Fix option parsing in tls.connect()
31+
32+ * Upgrade to V8 3.0.10
33+
34+
35+ 2011.01.21, Version 0.3.6 (unstable), bb3e71466e5240626d9d21cf791fe43e87d90011
236
337* REPL and other improvements on MinGW (Bert Belder)
438
Original file line number Diff line number Diff line change 2020 < li > < a href ="#download "> Download</ a > </ li >
2121 < li > < a href ="https://github.com/ry/node/raw/master/ChangeLog "> ChangeLog</ a > </ li >
2222 < li > < a href ="#about "> About</ a > </ li >
23- < li > < a href ="http://nodejs.org/docs/v0.3.6 /api "> v0.3.6 docs</ a > </ li >
23+ < li > < a href ="http://nodejs.org/docs/v0.3.7 /api "> v0.3.7 docs</ a > </ li >
2424 < li > < a href ="http://nodejs.org/docs/v0.2.6/api.html "> v0.2.6 docs</ a > </ li >
2525 < br />
2626 < li > < B > < a href ="https://github.com/ry/node/wiki "> Wiki</ a > </ B > </ li >
@@ -96,9 +96,9 @@ <h2 id="download">Download</h2>
9696 </ p >
9797
9898 < p >
99- Unstable: 2011.01.21
100- < a href ="http://nodejs.org/dist/node-v0.3.6 .tar.gz "> node-v0.3.6 .tar.gz</ a >
101- (< a href ="http://nodejs.org/docs/v0.3.6 /api/index.html "> Documentation</ a > )
99+ Unstable: 2011.01.27
100+ < a href ="http://nodejs.org/dist/node-v0.3.7 .tar.gz "> node-v0.3.7 .tar.gz</ a >
101+ (< a href ="http://nodejs.org/docs/v0.3.7 /api/index.html "> Documentation</ a > )
102102 </ p >
103103
104104 < 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 77#define NODE_MAJOR_VERSION 0
88#define NODE_MINOR_VERSION 3
99#define NODE_PATCH_VERSION 7
10- #define NODE_VERSION_IS_RELEASE 0
10+ #define NODE_VERSION_IS_RELEASE 1
1111
1212#ifndef NODE_STRINGIFY
1313#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -775,7 +775,7 @@ def build(bld):
775775 , 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
776776 , 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
777777 , 'PREFIX' : safe_path (program .env ["PREFIX" ])
778- , 'VERSION' : '0.3.2 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
778+ , 'VERSION' : '0.3.7 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
779779 }
780780 return x
781781
You can’t perform that action at this time.
0 commit comments