Skip to content

Commit 25122b9

Browse files
committedMar 26, 2011
Bump version to v0.4.4
1 parent 77044ed commit 25122b9

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed
 

‎AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,7 @@ Konstantin Käfer <github@kkaefer.com>
164164
Richard Rodger <richard@ricebridge.com>
165165
Andreas Reich <andreas@reich.name>
166166
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+

‎ChangeLog

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
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
219

320
* Don't decrease server connection counter again if destroy() is called more
421
than once GH-431 (Andreas Reich, Anders Conbere)

‎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.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>
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.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>)
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 4
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.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.
874874
}
875875
return x
876876

0 commit comments

Comments
 (0)