Skip to content

Commit d8579c6

Browse files
committed
Bump version to v0.3.7
1 parent 2863892 commit d8579c6

File tree

5 files changed

+46
-8
lines changed

5 files changed

+46
-8
lines changed

AUTHORS

+5-1
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,8 @@ Theo Schlossnagle <[email protected]>
152152
153153
154154
Mihai Călin Bazon <[email protected]>
155-
155+
Ali Farhadi <[email protected]>
156+
Daniel Ennis <[email protected]>
157+
Carter Allen <[email protected]>
158+
Greg Hughes <[email protected]>
159+
David Trejo <[email protected]>

ChangeLog

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
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

doc/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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)

wscript

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)