Skip to content

Commit 57544ba

Browse files
committed
Bump version to v0.3.3
1 parent feb77ea commit 57544ba

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,6 @@ Michael W <[email protected]>
148148
Sean Braithwaite <[email protected]>
149149
Anders Conbere <[email protected]>
150150
Devin Torres <[email protected]>
151+
Theo Schlossnagle <[email protected]>
152+
153+

ChangeLog

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2010.12.16, Version 0.3.2 (unstable)
1+
2011.01.02, Version 0.3.3 (unstable)
2+
3+
* TLS improvements.
4+
5+
* url.parse(url, true) defaults query field to {} (Jeremy Martin)
6+
7+
* Upgrade V8 to 3.0.4
8+
9+
* Handle ECONNABORT properly (Theo Schlossnagle)
10+
11+
* Fix memory leaks (Tom Hughes)
12+
13+
* Add os.cpus(), os.freemem(), os.totalmem(), os.loadavg() and other
14+
functions for OSX, Linux, and Cygwin. (Brian White)
15+
16+
* Fix REPL syntax error bug (GH-543), improve how REPL commands are
17+
evaulated.
18+
19+
* Use process.stdin instead of process.openStdin().
20+
21+
* Disable TLS tests when node doesn't have OpenSSL.
22+
23+
24+
2010.12.16, Version 0.3.2 (unstable), 4bb914bde9f3c2d6de00853353b6b8fc9c66143a
225

326
* Rip out the old (broken) TLS implementation introduce new tested
427
implementation and API. See docs. HTTPS not supported in this release.

doc/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<li><a href="#about">About</a></li>
2424
<li><a href="#links">Links</a></li>
2525
<li><a href="#contributing">Contributing</a></li>
26-
<li><a href="http://nodejs.org/docs/v0.3.2/api">v0.3.2 docs</a></li>
26+
<li><a href="http://nodejs.org/docs/v0.3.3/api">v0.3.3 docs</a></li>
2727
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
2828
</ol>
2929
</div>
@@ -92,9 +92,9 @@ <h2 id="download">Download</h2>
9292
</p>
9393

9494
<p>
95-
Unstable: 2010.12.16
96-
<a href="http://nodejs.org/dist/node-v0.3.2.tar.gz">node-v0.3.2.tar.gz</a>
97-
(<a href="http://nodejs.org/docs/v0.3.2/api/index.html">Documentation</a>)
95+
Unstable: 2011.01.02
96+
<a href="http://nodejs.org/dist/node-v0.3.3.tar.gz">node-v0.3.3.tar.gz</a>
97+
(<a href="http://nodejs.org/docs/v0.3.3/api/index.html">Documentation</a>)
9898
</p>
9999

100100
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

Lines changed: 1 addition & 1 deletion
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 3
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)

0 commit comments

Comments
 (0)