mirror of https://github.com/nodejs/node.git
parent
d1f36accbf
commit
4bb914bde9
12
AUTHORS
12
AUTHORS
|
@ -136,3 +136,15 @@ Vitali Lovich <vitali.lovich@palm.com>
|
|||
Stéphan Kochen <stephan@kochen.nl>
|
||||
Oleg Efimov <efimovov@gmail.com>
|
||||
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
ChangeLog
34
ChangeLog
|
@ -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)
|
||||
- Centralize error handling in SecureStream
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#links">Links</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>
|
||||
</ol>
|
||||
</div>
|
||||
|
@ -92,9 +92,9 @@ net.createServer(function (socket) {
|
|||
</p>
|
||||
|
||||
<p>
|
||||
Unstable: 2010.11.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/docs/v0.3.1/api/index.html">Documentation</a>)
|
||||
Unstable: 2010.12.16
|
||||
<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.2/api/index.html">Documentation</a>)
|
||||
</p>
|
||||
|
||||
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#define NODE_MAJOR_VERSION 0
|
||||
#define NODE_MINOR_VERSION 3
|
||||
#define NODE_PATCH_VERSION 2
|
||||
#define NODE_VERSION_IS_RELEASE 0
|
||||
#define NODE_VERSION_IS_RELEASE 1
|
||||
|
||||
#ifndef NODE_STRINGIFY
|
||||
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|
||||
|
|
2
wscript
2
wscript
|
@ -638,7 +638,7 @@ def build(bld):
|
|||
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
|
||||
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
|
||||
, '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
|
||||
|
||||
|
|
Loading…
Reference in New Issue