Skip to content

Commit 9493b75

Browse files
committed
Bump version to v0.3.8
1 parent 4733d0b commit 9493b75

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,4 @@ Daniel Ennis <[email protected]>
157157
Carter Allen <[email protected]>
158158
Greg Hughes <[email protected]>
159159
David Trejo <[email protected]>
160+
Joe Walnes <[email protected]>

ChangeLog

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
2011.02.04, Version 0.3.8 (unstable)
2+
3+
* Add req.abort() for client side requests.
4+
5+
* Add exception.code for easy testing:
6+
Example: if (err.code == 'EADDRINUSE');
7+
8+
* Add process.stderr.
9+
10+
* require.main is the main module. (Isaac Schlueter)
11+
12+
* dgram: setMulticastTTL, setMulticastLoopback and addMembership.
13+
(Joe Walnes)
14+
15+
* Fix throttling in TLS connections
16+
17+
* Add socket.bufferSize
18+
19+
* MinGW improvements (Bert Belder)
20+
21+
* Upgrade V8 to 3.1.1
22+
123
2011.01.27, Version 0.3.7 (unstable)
224

325
* Expose agent in http and https client. (Mikeal Rogers)

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.7/api">v0.3.7 docs</a></li>
23+
<li><a href="http://nodejs.org/docs/v0.3.8/api">v0.3.8 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.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>)
99+
Unstable: 2011.02.04
100+
<a href="http://nodejs.org/dist/node-v0.3.8.tar.gz">node-v0.3.8.tar.gz</a>
101+
(<a href="http://nodejs.org/docs/v0.3.8/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 8
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.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
778+
, 'VERSION' : '0.3.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
779779
}
780780
return x
781781

0 commit comments

Comments
 (0)