Skip to content

Commit c095ce1

Browse files
committedMar 18, 2011
bump version to v0.4.3
1 parent 5b161b0 commit c095ce1

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,5 @@ Koichi Kobayashi <koichik@improvement.jp>
162162
Daniel Gröber <dxld@darkboxed.org>
163163
Konstantin Käfer <github@kkaefer.com>
164164
Richard Rodger <richard@ricebridge.com>
165+
Andreas Reich <andreas@reich.name>
166+
Dean McNamee <dean@gmail.com>

‎ChangeLog

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
2011.03.02, Version 0.4.2 (stable)
1+
2011.03.18, Version 0.4.3 (stable)
2+
3+
* Don't decrease server connection counter again if destroy() is called more
4+
than once GH-431 (Andreas Reich, Anders Conbere)
5+
6+
* Documentation improvements (koichik)
7+
8+
* Fix bug with setMaxListeners GH-682
9+
10+
* Start up memory footprint improvement. (Tom Hughes)
11+
12+
* Solaris improvements.
13+
14+
* Buffer::Length(Buffer*) should not invoke itself recursively GH-759 (Ben
15+
Noordhuis)
16+
17+
* TLS: Advertise support for client certs GH-774 (Theo Schlossnagle)
18+
19+
* HTTP Agent bugs: GH-787, GH-784, GH-803.
20+
21+
* Don't call GetMemoryUsage every 5 seconds.
22+
23+
* Upgrade V8 to 3.1.8.3
24+
25+
26+
2011.03.02, Version 0.4.2 (stable), 39280e1b5731f3fcd8cc42ad41b86cdfdcb6d58b
227

328
* Improve docs.
429

‎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.2/api">v0.4.2 docs</a></li>
27+
<li><a href="http://nodejs.org/docs/v0.4.3/api">v0.4.3 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>
@@ -96,9 +96,9 @@ <h2 id="download">Download</h2>
9696
</p>
9797

9898
<p>
99-
2011.03.02
100-
<a href="http://nodejs.org/dist/node-v0.4.2.tar.gz">node-v0.4.2.tar.gz</a>
101-
(<a href="http://nodejs.org/docs/v0.4.2/api/index.html">Documentation</a>)
99+
2011.03.18
100+
<a href="http://nodejs.org/dist/node-v0.4.3.tar.gz">node-v0.4.3.tar.gz</a>
101+
(<a href="http://nodejs.org/docs/v0.4.3/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
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 4
3030
#define NODE_PATCH_VERSION 3
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
@@ -868,7 +868,7 @@ def build(bld):
868868
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
869869
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
870870
, 'PREFIX' : safe_path(program.env["PREFIX"])
871-
, 'VERSION' : '0.4.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
871+
, 'VERSION' : '0.4.3' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
872872
}
873873
return x
874874

0 commit comments

Comments
 (0)
Please sign in to comment.