Skip to content

Commit 4585330

Browse files
committed
Bump version to v0.5.3
1 parent 21964fa commit 4585330

File tree

4 files changed

+50
-9
lines changed

4 files changed

+50
-9
lines changed

ChangeLog

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
2011.07.22, Version 0.5.2 (unstable)
1+
2011.08.01, Version 0.5.3 (unstable)
2+
3+
* Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)
4+
5+
* #243 Add an optional length argument to Buffer.write() (koichik)
6+
7+
* #657 convert nonbuffer data to string in fs.writeFile/Sync
8+
(Daniel Pihlström)
9+
10+
* Add process.features, remove process.useUV (Ben Noordhuis)
11+
12+
* #324 Fix crypto hmac to accept binary keys + add test cases from rfc 2202
13+
and 4231 (Stefan Bühler)
14+
15+
* Add Socket::bytesRead, Socket::bytesWritten (Alexander Uvarov)
16+
17+
* #572 Don't print result of --eval in CLI (Ben Noordhuis)
18+
19+
* #1223 Fix http.ClientRequest crashes if end() was called twice (koichik)
20+
21+
* #1383 Emit 'close' after all connections have closed (Felix Geisendörfer)
22+
23+
* Add sprintf-like util.format() function (Ben Noordhuis)
24+
25+
* Add support for TLS SNI (Fedor Indutny)
26+
27+
* New http agent implementation. Off by default the command line flag
28+
--use-http2 will enable it. "make test-http2" will run the tests
29+
for the new implementation. (Mikeal Rogers)
30+
31+
* Revert AMD compatibility. (isaacs)
32+
33+
* Windows: improvements, child_process support.
34+
35+
* Remove pkg-config file.
36+
37+
* Fix startup time regressions.
38+
39+
* doc improvements
40+
41+
42+
2011.07.22, Version 0.5.2 (unstable), 08ffce1a00dde1199174b390a64a90b60768ddf5
243

344
* libuv improvements; named pipe support
445

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.2/api">v0.5.2 docs</a></li>
30+
<li><a href="http://nodejs.org/docs/v0.5.3/api">v0.5.3 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.22 v0.5.2 (unstable)
119+
<p>2011.08.01 v0.5.3 (unstable)
120120
<ul class="release">
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>
121+
<li><a href="http://nodejs.org/dist/v0.5.3/node-v0.5.3.tar.gz"><code>node-v0.5.3.tar.gz</code> Source code</a>
122+
<li><a href="http://nodejs.org/dist/v0.5.3/node.exe"><code>node.exe</code> Windows executable</a>
123+
<li><a href="http://nodejs.org/docs/v0.5.3/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.2 Manual &amp; Documentation</title>
5+
<title>{{section}}Node.js v0.5.3 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.2 Manual &amp; Documentation</h1>
14+
<h1>Node.js v0.5.3 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
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 5
3030
#define NODE_PATCH_VERSION 3
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)

0 commit comments

Comments
 (0)