Skip to content

Commit 4bb914b

Browse files
committed
Bump version to v0.3.2
1 parent d1f36ac commit 4bb914b

File tree

5 files changed

+51
-7
lines changed

5 files changed

+51
-7
lines changed

AUTHORS

+12
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,15 @@ Vitali Lovich <[email protected]>
136136
Stéphan Kochen <[email protected]>
137137
Oleg Efimov <[email protected]>
138138
Guillaume Tuton <[email protected]>
139+
Tim Cooijmans <[email protected]>
140+
Dan Søndergaard <[email protected]>
141+
Silas Sewell <[email protected]>
142+
Wade Simmons <[email protected]>
143+
Daniel Gröber <[email protected]>
144+
Travis Swicegood <[email protected]>
145+
Oleg Slobodskoi <[email protected]>
146+
Jeremy Martin <[email protected]>
147+
Michael W <[email protected]>
148+
Sean Braithwaite <[email protected]>
149+
Anders Conbere <[email protected]>
150+
Devin Torres <[email protected]>

ChangeLog

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
1-
2010.11.16, Version 0.3.1 (unstable)
1+
2010.12.16, Version 0.3.2 (unstable)
2+
3+
* Rip out the old (broken) TLS implementation introduce new tested
4+
implementation and API. See docs. HTTPS not supported in this release.
5+
6+
* Introduce 'os' and 'tty' modules.
7+
8+
* Callback parameters for socket.write() and socket.connect().
9+
10+
* Support CNAME lookups in DNS module. (Ben Noordhuis)
11+
12+
* cmake support (Tom Hughes)
13+
14+
* 'make lint'
15+
16+
* oprofile support (./configure --oprofile)
17+
18+
* Lots of bug fixes, including:
19+
- Memory leak in ChildProcess:Spawn(). (Tom Hughes)
20+
- buffer.slice(0, 0)
21+
- Global variable leaks
22+
- clearTimeouts calling multiple times (Michael W)
23+
- utils.inspect's detection of circular structures (Tim Cooijmans)
24+
- Apple's threaded write()s bug (Jorge Chamorro Bieling)
25+
- Make sure raw mode is disabled when exiting a terminal-based REPL.
26+
(Brian White)
27+
28+
* Deprecate process.compile, process.ENV
29+
30+
* Upgrade V8 to 3.0.3, upgrade http-parser.
31+
32+
33+
2010.11.16, Version 0.3.1 (unstable), ce9a54aa1fbf709dd30316af8a2f14d83150e947
234

335
* TLS improvments (Paul Querna)
436
- Centralize error handling in SecureStream

doc/index.html

+4-4
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.1/api">v0.3.1 docs</a></li>
26+
<li><a href="http://nodejs.org/docs/v0.3.2/api">v0.3.2 docs</a></li>
2727
<li><a href="http://nodejs.org/docs/v0.2.5/api.html">v0.2.5 docs</a></li>
2828
</ol>
2929
</div>
@@ -92,9 +92,9 @@ <h2 id="download">Download</h2>
9292
</p>
9393

9494
<p>
95-
Unstable: 2010.11.16
96-
<a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</a>
97-
(<a href="http://nodejs.org/docs/v0.3.1/api/index.html">Documentation</a>)
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>)
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

+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 2
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
@@ -638,7 +638,7 @@ def build(bld):
638638
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
639639
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
640640
, 'PREFIX' : program.env["PREFIX"]
641-
, 'VERSION' : '0.3.1-pre' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.h
641+
, 'VERSION' : '0.3.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
642642
}
643643
return x
644644

0 commit comments

Comments
 (0)