Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 15, 2011
1 parent 6312e88 commit 771ba34
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 13 deletions.
25 changes: 24 additions & 1 deletion ChangeLog
@@ -1,4 +1,27 @@
2011.08.17, Version 0.4.11 (stable)
2011.09.15, Version 0.4.12 (stable)

* Improve docs

* #1563 overflow in ChildProcess custom_fd.

* #1569, parse error on multi-line HTTP headers. (Ben Noordhuis)

* #1586 net: Socket write encoding case sensitivity (koichik)

* #1610 Remove DigiNotar CA from trusted list (isaacs)

* #1624 buffer: Avoid overrun with 'binary' encoding. (koichik)

* #1633 buffer: write() should always set _charsWritten. (koichik)

* #1707 hasOwnProperty usage security hole in querystring (isaacs)

* #1719 Drain OpenSSL error queue

* Fix error reporting in net.Server.listen


2011.08.17, Version 0.4.11 (stable), a745d19ce7d1c0e3778371af4f0346be70cf2c8e

* #738 Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)

Expand Down
18 changes: 9 additions & 9 deletions doc/index.html
Expand Up @@ -26,8 +26,8 @@
<li><a href="#download">Download</a></li>
<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.11/api">v0.4.11 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.4/api">v0.5.4 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.4.12/api">v0.4.12 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.6/api">v0.5.6 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>
Expand Down Expand Up @@ -110,17 +110,17 @@ <h2 id="download">Download</h2>
<a href="http://github.com/joyent/node/tree/master">git repo</a>
</p>

<p>2011.08.17 v0.4.11 (stable)
<p>2011.09.15 v0.4.12 (stable)
<ul class="release">
<li><a href="http://nodejs.org/dist/node-v0.4.11.tar.gz"><code>node-v0.4.11.tar.gz</code> Source Code</a>
<li><a href="http://nodejs.org/docs/v0.4.11/api/index.html">Documentation</a>
<li><a href="http://nodejs.org/dist/node-v0.4.12.tar.gz"><code>node-v0.4.12.tar.gz</code> Source Code</a>
<li><a href="http://nodejs.org/docs/v0.4.12/api/index.html">Documentation</a>
</ul>

<p>2011.08.12 v0.5.4 (unstable)
<p>2011.09.09 v0.5.6 (unstable)
<ul class="release">
<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>
<li><a href="http://nodejs.org/dist/v0.5.4/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.4/api/index.html">Documentation</a>
<li><a href="http://nodejs.org/dist/v0.5.6/node-v0.5.6.tar.gz"><code>node-v0.5.6.tar.gz</code> Source code</a>
<li><a href="http://nodejs.org/dist/v0.5.6/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.6/api/index.html">Documentation</a>
</ul>


Expand Down
4 changes: 2 additions & 2 deletions doc/template.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8" />
<title>{{section}}Node.js v0.4.11 Manual &amp; Documentation</title>
<title>{{section}}Node.js v0.4.12 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" />
Expand All @@ -11,7 +11,7 @@
<body>
<div id="container">
<header>
<h1>Node.js v0.4.11 Manual &amp; Documentation</h1>
<h1>Node.js v0.4.12 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>
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -28,7 +28,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 12
#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 771ba34

Please sign in to comment.