Bump version to v0.5.2
This commit is contained in:
parent
9e77b1a82e
commit
08ffce1a00
8
AUTHORS
8
AUTHORS
@ -189,3 +189,11 @@ Kip Gebhardt <kip.gebhardt@voxer.com>
|
||||
Stefan Rusu <saltwaterc@gmail.com>
|
||||
Wojciech Wnętrzak <w.wnetrzak@gmail.com>
|
||||
Reid Burke <me@reidburke.com>
|
||||
Niklas Fiekas <niklas.fiekas@googlemail.com>
|
||||
Adam Luikart <me@adamluikart.com>
|
||||
avz <a.arepo@gmail.com>
|
||||
Jeremy Selier <jeremy@jolicloud.com>
|
||||
Igor Zinkovsky <igorzi@microsoft.com>
|
||||
Shigeki Ohtsu <ohtsu@d.jp>
|
||||
vegorov@chromium.org <vegorov@chromium.org>
|
||||
Pierre-Alexandre St-Jean <pierrealexandre.stjean@gmail.com>
|
||||
|
25
ChangeLog
25
ChangeLog
@ -1,4 +1,27 @@
|
||||
2011.07.14, Version 0.5.1 (unstable)
|
||||
2011.07.22, Version 0.5.2 (unstable)
|
||||
|
||||
* libuv improvements; named pipe support
|
||||
|
||||
* #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis)
|
||||
|
||||
* #1348 remove require.paths (isaacs)
|
||||
|
||||
* #1349 Delimit NODE_PATH with ; on Windows (isaacs)
|
||||
|
||||
* #1335 Remove EventEmitter from C++
|
||||
|
||||
* #1357 Load json files with require() (isaacs)
|
||||
|
||||
* #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
|
||||
|
||||
* Fixed: GC was being run too often.
|
||||
|
||||
* Upgrade V8 to 3.4.14
|
||||
|
||||
* doc improvements
|
||||
|
||||
|
||||
2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8
|
||||
|
||||
* #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
<li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li>
|
||||
<li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 docs</a></li>
|
||||
<li><a href="http://nodejs.org/docs/v0.5.2/api">v0.5.2 docs</a></li>
|
||||
<br/>
|
||||
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
|
||||
<li><a href="http://blog.nodejs.org/">Blog</a></li>
|
||||
@ -116,11 +116,11 @@ server.listen(1337, "127.0.0.1");
|
||||
<li><a href="http://nodejs.org/docs/v0.4.10/api/index.html">Documentation</a>
|
||||
</ul>
|
||||
|
||||
<p>2011.07.14 v0.5.1 (unstable)
|
||||
<p>2011.07.22 v0.5.2 (unstable)
|
||||
<ul class="release">
|
||||
<li><a href="http://nodejs.org/dist/v0.5.1/node-v0.5.1.tar.gz"><code>node-v0.5.1.tar.gz</code> Source code</a>
|
||||
<li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a>
|
||||
<li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a>
|
||||
<li><a href="http://nodejs.org/dist/v0.5.2/node-v0.5.2.tar.gz"><code>node-v0.5.2.tar.gz</code> Source code</a>
|
||||
<li><a href="http://nodejs.org/dist/v0.5.2/node.exe"><code>node.exe</code> Windows executable</a>
|
||||
<li><a href="http://nodejs.org/docs/v0.5.2/api/index.html">Documentation</a>
|
||||
</ul>
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{section}}Node.js v0.5.1 Manual & Documentation</title>
|
||||
<title>{{section}}Node.js v0.5.2 Manual & Documentation</title>
|
||||
<link type="image/x-icon" rel="icon" href="/favicon.ico" />
|
||||
<link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" />
|
||||
<link rel="stylesheet" href="assets/style.css" type="text/css" media="all" />
|
||||
@ -10,7 +10,7 @@
|
||||
<body>
|
||||
<div id="container">
|
||||
<header>
|
||||
<h1>Node.js v0.5.1 Manual & Documentation</h1>
|
||||
<h1>Node.js v0.5.2 Manual & Documentation</h1>
|
||||
<div id="gtoc">
|
||||
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
|
||||
</div>
|
||||
|
@ -28,7 +28,7 @@
|
||||
#define NODE_MAJOR_VERSION 0
|
||||
#define NODE_MINOR_VERSION 5
|
||||
#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
@ -897,7 +897,7 @@ def build(bld):
|
||||
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
|
||||
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
|
||||
, 'PREFIX' : safe_path(program.env["PREFIX"])
|
||||
, 'VERSION' : '0.5.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
||||
, 'VERSION' : '0.5.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
|
||||
}
|
||||
return x
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user