Skip to content

Commit 08ffce1

Browse files
committed
Bump version to v0.5.2
1 parent 9e77b1a commit 08ffce1

File tree

6 files changed

+41
-10
lines changed

6 files changed

+41
-10
lines changed

AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -189,3 +189,11 @@ Kip Gebhardt <[email protected]>
189189
Stefan Rusu <[email protected]>
190190
Wojciech Wnętrzak <[email protected]>
191191
Reid Burke <[email protected]>
192+
Niklas Fiekas <[email protected]>
193+
Adam Luikart <[email protected]>
194+
195+
Jeremy Selier <[email protected]>
196+
Igor Zinkovsky <[email protected]>
197+
Shigeki Ohtsu <[email protected]>
198+
199+
Pierre-Alexandre St-Jean <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2011.07.14, Version 0.5.1 (unstable)
1+
2011.07.22, Version 0.5.2 (unstable)
2+
3+
* libuv improvements; named pipe support
4+
5+
* #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis)
6+
7+
* #1348 remove require.paths (isaacs)
8+
9+
* #1349 Delimit NODE_PATH with ; on Windows (isaacs)
10+
11+
* #1335 Remove EventEmitter from C++
12+
13+
* #1357 Load json files with require() (isaacs)
14+
15+
* #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
16+
17+
* Fixed: GC was being run too often.
18+
19+
* Upgrade V8 to 3.4.14
20+
21+
* doc improvements
22+
23+
24+
2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8
225

326
* #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
427

doc/index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</a></li>
2828
<li><a href="#about">About</a></li>
2929
<li><a href="http://nodejs.org/docs/v0.4.10/api">v0.4.10 docs</a></li>
30-
<li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 docs</a></li>
30+
<li><a href="http://nodejs.org/docs/v0.5.2/api">v0.5.2 docs</a></li>
3131
<br/>
3232
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3333
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -116,11 +116,11 @@ <h2 id="download">Download</h2>
116116
<li><a href="http://nodejs.org/docs/v0.4.10/api/index.html">Documentation</a>
117117
</ul>
118118

119-
<p>2011.07.14 v0.5.1 (unstable)
119+
<p>2011.07.22 v0.5.2 (unstable)
120120
<ul class="release">
121-
<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>
122-
<li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a>
123-
<li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a>
121+
<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>
122+
<li><a href="http://nodejs.org/dist/v0.5.2/node.exe"><code>node.exe</code> Windows executable</a>
123+
<li><a href="http://nodejs.org/docs/v0.5.2/api/index.html">Documentation</a>
124124
</ul>
125125

126126

doc/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>{{section}}Node.js v0.5.1 Manual &amp; Documentation</title>
4+
<title>{{section}}Node.js v0.5.2 Manual &amp; Documentation</title>
55
<link type="image/x-icon" rel="icon" href="/favicon.ico" />
66
<link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" />
77
<link rel="stylesheet" href="assets/style.css" type="text/css" media="all" />
@@ -10,7 +10,7 @@
1010
<body>
1111
<div id="container">
1212
<header>
13-
<h1>Node.js v0.5.1 Manual &amp; Documentation</h1>
13+
<h1>Node.js v0.5.2 Manual &amp; Documentation</h1>
1414
<div id="gtoc">
1515
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
1616
</div>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 5
3030
#define NODE_PATCH_VERSION 2
31-
#define NODE_VERSION_IS_RELEASE 0
31+
#define NODE_VERSION_IS_RELEASE 1
3232

3333
#ifndef NODE_STRINGIFY
3434
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ def build(bld):
897897
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
898898
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
899899
, 'PREFIX' : safe_path(program.env["PREFIX"])
900-
, 'VERSION' : '0.5.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
900+
, 'VERSION' : '0.5.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
901901
}
902902
return x
903903

0 commit comments

Comments
 (0)