Skip to content

Commit 787a343

Browse files
committedApr 2, 2011
Bump version to v0.4.5
1 parent 6d85da1 commit 787a343

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed
 

‎ChangeLog

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
2011.03.26, Version 0.4.4 (stable)
1+
2011.04.01, Version 0.4.5 (stable)
2+
3+
* Fix listener leak in stream.pipe() (Mikeal Rogers)
4+
5+
* Retain buffers in fs.read/write() GH-814 (Jorge Chamorro Bieling)
6+
7+
* TLS performance improvements
8+
9+
* SlowBuffer.prototype.slice bug GH-843
10+
11+
* process.stderr.write should return true
12+
13+
* Immediate pause/resume race condition GH-535 (isaacs)
14+
15+
* Set default host header properly GH-721 (isaacs)
16+
17+
* Upgrade V8 to 3.1.8.8
18+
19+
20+
2011.03.26, Version 0.4.4 (stable), 25122b986a90ba0982697b7abcb0158c302a1019
221

322
* CryptoStream.end shouldn't throw if not writable GH-820
423

‎doc/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<li><a href="#download">Download</a></li>
2525
<li><a href="https://github.com/joyent/node/raw/master/ChangeLog">ChangeLog</a></li>
2626
<li><a href="#about">About</a></li>
27-
<li><a href="http://nodejs.org/docs/v0.4.4/api">v0.4.4 docs</a></li>
27+
<li><a href="http://nodejs.org/docs/v0.4.5/api">v0.4.5 docs</a></li>
2828
<br/>
2929
<li><B><a href="https://github.com/joyent/node/wiki">Wiki</a></B></li>
3030
<li><B><a href="http://blog.nodejs.org/">Blog</a></B></li>
@@ -106,9 +106,9 @@ <h2 id="download">Download</h2>
106106
</p>
107107

108108
<p>
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>)
109+
2011.04.01
110+
<a href="http://nodejs.org/dist/node-v0.4.5.tar.gz">node-v0.4.5.tar.gz</a>
111+
(<a href="http://nodejs.org/docs/v0.4.5/api/index.html">Documentation</a>)
112112
</p>
113113

114114
<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
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 4
3030
#define NODE_PATCH_VERSION 5
31-
#define NODE_VERSION_IS_RELEASE 0
31+
#define NODE_VERSION_IS_RELEASE 1
3232

3333
#ifndef NODE_STRINGIFY
3434
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

‎wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ def build(bld):
870870
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
871871
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
872872
, 'PREFIX' : safe_path(program.env["PREFIX"])
873-
, 'VERSION' : '0.4.4' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
873+
, 'VERSION' : '0.4.5' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
874874
}
875875
return x
876876

0 commit comments

Comments
 (0)