summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-07-22 03:55:26 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-07-22 03:55:26 -0700
commit08ffce1a00dde1199174b390a64a90b60768ddf5 (patch)
tree443e9aab6a3b5e97889e27d712d3a647bbbb9fbb
parent9e77b1a82ec126f52b20a4324f68edb855659d88 (diff)
downloadnode-08ffce1a00dde1199174b390a64a90b60768ddf5.tar.gz
Bump version to v0.5.2v0.5.2
-rw-r--r--AUTHORS8
-rw-r--r--ChangeLog25
-rw-r--r--doc/index.html10
-rw-r--r--doc/template.html4
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
6 files changed, 41 insertions, 10 deletions
diff --git a/AUTHORS b/AUTHORS
index 1eb73d6df..04d273a8b 100644
--- a/AUTHORS
+++ b/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>
diff --git a/ChangeLog b/ChangeLog
index a68e1dbef..cb0744126 100644
--- a/ChangeLog
+++ b/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)
diff --git a/doc/index.html b/doc/index.html
index 4e3fc5c77..c0d31c439 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -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>
diff --git a/doc/template.html b/doc/template.html
index 9127a0dda..a3772832f 100644
--- a/doc/template.html
+++ b/doc/template.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>{{section}}Node.js v0.5.1 Manual &amp; Documentation</title>
+ <title>{{section}}Node.js v0.5.2 Manual &amp; 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 &amp; Documentation</h1>
+ <h1>Node.js v0.5.2 Manual &amp; Documentation</h1>
<div id="gtoc">
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
</div>
diff --git a/src/node_version.h b/src/node_version.h
index 24b45b7a7..7ecafd8c3 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -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)
diff --git a/wscript b/wscript
index e354e78b5..490bb0f9a 100644
--- a/wscript
+++ b/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