Skip to content

Commit d2d53d4

Browse files
committedAug 26, 2011
Bump version to v0.5.5
1 parent 790f13d commit d2d53d4

File tree

4 files changed

+53
-9
lines changed

4 files changed

+53
-9
lines changed
 

‎ChangeLog

+45-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,48 @@
1-
2011.08.12, Version 0.5.4 (unstable)
1+
2011.08.26, Version 0.5.5 (unstable)
2+
3+
* typed arrays, implementation from Plesk
4+
5+
* fix IP multicast on SunOS
6+
7+
* fix DNS lookup order: IPv4 first, IPv6 second (--use-uv only)
8+
9+
* remove support for UNIX datagram sockets (--use-uv only)
10+
11+
* UDP support for Windows (Bert Belder)
12+
13+
* #1572 improve tab completion for objects in the REPL (Nathan Rajlich)
14+
15+
* #1563 fix buffer overflow in child_process module (reported by Dean McNamee)
16+
17+
* #1546 fix performance regression in http module (reported by Brian Geffon)
18+
19+
* #1491 add PBKDF2 crypto support (Glen Low)
20+
21+
* #1447 remove deprecated http.cat() function (Mikeal Rogers)
22+
23+
* #1140 fix incorrect dispatch of vm.runInContext's filename argument
24+
(Antranig Basman)
25+
26+
* #1140 document vm.runInContext() and vm.createContext() (Antranig Basman)
27+
28+
* #1428 fix os.freemem() on 64 bits freebsd (Artem Zaytsev)
29+
30+
* #1164 make all DNS lookups async, fixes uncatchable exceptions
31+
(Koichi Kobayashi)
32+
33+
* fix incorrect ssl shutdown check (Tom Hughes)
34+
35+
* various cmake fixes (Tom Hughes)
36+
37+
* improved documentation (Koichi Kobayashi, Logan Smyth, Fedor Indutny,
38+
Mikeal Rogers, Maciej Małecki, Antranig Basman, Mickaël Delahaye)
39+
40+
* upgrade libuv to commit 835782a
41+
42+
* upgrade V8 to 3.5.8
43+
44+
45+
2011.08.12, Version 0.5.4 (unstable), cfba1f59224ff8602c3fe9145181cad4c6df89a9
246

347
* libuv/Windows compatibility improvements
448

‎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.11/api">v0.4.11 docs</a></li>
30-
<li><a href="http://nodejs.org/docs/v0.5.4/api">v0.5.4 docs</a></li>
30+
<li><a href="http://nodejs.org/docs/v0.5.5/api">v0.5.5 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.11/api/index.html">Documentation</a>
117117
</ul>
118118

119-
<p>2011.08.12 v0.5.4 (unstable)
119+
<p>2011.08.12 v0.5.5 (unstable)
120120
<ul class="release">
121-
<li><a href="http://nodejs.org/dist/v0.5.4/node-v0.5.4.tar.gz"><code>node-v0.5.4.tar.gz</code> Source code</a>
122-
<li><a href="http://nodejs.org/dist/v0.5.4/node.exe"><code>node.exe</code> Windows executable</a>
123-
<li><a href="http://nodejs.org/docs/v0.5.4/api/index.html">Documentation</a>
121+
<li><a href="http://nodejs.org/dist/v0.5.5/node-v0.5.5.tar.gz"><code>node-v0.5.5.tar.gz</code> Source code</a>
122+
<li><a href="http://nodejs.org/dist/v0.5.5/node.exe"><code>node.exe</code> Windows executable</a>
123+
<li><a href="http://nodejs.org/docs/v0.5.5/api/index.html">Documentation</a>
124124
</ul>
125125

126126

‎doc/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="UTF-8" />
5-
<title>{{section}}Node.js v0.5.4 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.5.5 Manual &amp; Documentation</title>
66
<link type="image/x-icon" rel="icon" href="/favicon.ico" />
77
<link type="image/x-icon" rel="shortcut icon" href="/favicon.ico" />
88
<link rel="stylesheet" href="assets/style.css" type="text/css" media="all" />
@@ -11,7 +11,7 @@
1111
<body>
1212
<div id="container">
1313
<header>
14-
<h1>Node.js v0.5.4 Manual &amp; Documentation</h1>
14+
<h1>Node.js v0.5.5 Manual &amp; Documentation</h1>
1515
<div id="gtoc">
1616
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
1717
</div>

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 5
3131
#define NODE_PATCH_VERSION 5
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

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

0 commit comments

Comments
 (0)