Skip to content

Commit

Permalink
Bump version to v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Dec 17, 2010
1 parent d1f36ac commit 4bb914b
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 7 deletions.
12 changes: 12 additions & 0 deletions AUTHORS
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -136,3 +136,15 @@ Vitali Lovich <vitali.lovich@palm.com>
Stéphan Kochen <stephan@kochen.nl> Stéphan Kochen <stephan@kochen.nl>
Oleg Efimov <efimovov@gmail.com> Oleg Efimov <efimovov@gmail.com>
Guillaume Tuton <guillaume@tuton.fr> Guillaume Tuton <guillaume@tuton.fr>
Tim Cooijmans <tim@aapopfiets.nl>
Dan Søndergaard <dan1990@gmail.com>
Silas Sewell <silas@sewell.ch>
Wade Simmons <wade@wades.im>
Daniel Gröber <darklord@darkboxed.org>
Travis Swicegood <development@domain51.com>
Oleg Slobodskoi <oleg008@gmail.com>
Jeremy Martin <jmar777@gmail.com>
Michael W <gcr@sneakygcr.net>
Sean Braithwaite <brapse@gmail.com>
Anders Conbere <aconbere@gmail.com>
Devin Torres <devin@devintorres.com>
34 changes: 33 additions & 1 deletion ChangeLog
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,36 @@
2010.11.16, Version 0.3.1 (unstable) 2010.12.16, Version 0.3.2 (unstable)

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

* Introduce 'os' and 'tty' modules.

* Callback parameters for socket.write() and socket.connect().

* Support CNAME lookups in DNS module. (Ben Noordhuis)

* cmake support (Tom Hughes)

* 'make lint'

* oprofile support (./configure --oprofile)

* Lots of bug fixes, including:
- Memory leak in ChildProcess:Spawn(). (Tom Hughes)
- buffer.slice(0, 0)
- Global variable leaks
- clearTimeouts calling multiple times (Michael W)
- utils.inspect's detection of circular structures (Tim Cooijmans)
- Apple's threaded write()s bug (Jorge Chamorro Bieling)
- Make sure raw mode is disabled when exiting a terminal-based REPL.
(Brian White)

* Deprecate process.compile, process.ENV

* Upgrade V8 to 3.0.3, upgrade http-parser.


2010.11.16, Version 0.3.1 (unstable), ce9a54aa1fbf709dd30316af8a2f14d83150e947


* TLS improvments (Paul Querna) * TLS improvments (Paul Querna)
- Centralize error handling in SecureStream - Centralize error handling in SecureStream
Expand Down
8 changes: 4 additions & 4 deletions doc/index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<li><a href="#about">About</a></li> <li><a href="#about">About</a></li>
<li><a href="#links">Links</a></li> <li><a href="#links">Links</a></li>
<li><a href="#contributing">Contributing</a></li> <li><a href="#contributing">Contributing</a></li>
<li><a href="http://nodejs.org/docs/v0.3.1/api">v0.3.1 docs</a></li> <li><a href="http://nodejs.org/docs/v0.3.2/api">v0.3.2 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.2.5/api.html">v0.2.5 docs</a></li> <li><a href="http://nodejs.org/docs/v0.2.5/api.html">v0.2.5 docs</a></li>
</ol> </ol>
</div> </div>
Expand Down Expand Up @@ -92,9 +92,9 @@ <h2 id="download">Download</h2>
</p> </p>


<p> <p>
Unstable: 2010.11.16 Unstable: 2010.12.16
<a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</a> <a href="http://nodejs.org/dist/node-v0.3.2.tar.gz">node-v0.3.2.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.3.1/api/index.html">Documentation</a>) (<a href="http://nodejs.org/docs/v0.3.2/api/index.html">Documentation</a>)
</p> </p>


<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p> <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0 #define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 3 #define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 2 #define NODE_PATCH_VERSION 2
#define NODE_VERSION_IS_RELEASE 0 #define NODE_VERSION_IS_RELEASE 1


#ifndef NODE_STRINGIFY #ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : program.env["PREFIX"] , 'PREFIX' : program.env["PREFIX"]
, 'VERSION' : '0.3.1-pre' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.h , 'VERSION' : '0.3.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
} }
return x return x


Expand Down

0 comments on commit 4bb914b

Please sign in to comment.