Browse Source

Bump version to v0.4.12

v0.7.4-release v0.4.12
Ryan Dahl 13 years ago
parent
commit
771ba34ca7
  1. 25
      ChangeLog
  2. 18
      doc/index.html
  3. 4
      doc/template.html
  4. 2
      src/node_version.h

25
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) * #738 Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)

18
doc/index.html

@ -26,8 +26,8 @@
<li><a href="#download">Download</a></li> <li><a href="#download">Download</a></li>
<li><a href="https://github.com/joyent/node/wiki/ChangeLog">ChangeLog</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="#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.4.12/api">v0.4.12 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.5.6/api">v0.5.6 docs</a></li>
<br/> <br/>
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li> <li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
<li><a href="http://blog.nodejs.org/">Blog</a></li> <li><a href="http://blog.nodejs.org/">Blog</a></li>
@ -110,17 +110,17 @@ server.listen(1337, "127.0.0.1");
<a href="http://github.com/joyent/node/tree/master">git repo</a> <a href="http://github.com/joyent/node/tree/master">git repo</a>
</p> </p>
<p>2011.08.17 v0.4.11 (stable) <p>2011.09.15 v0.4.12 (stable)
<ul class="release"> <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/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.11/api/index.html">Documentation</a> <li><a href="http://nodejs.org/docs/v0.4.12/api/index.html">Documentation</a>
</ul> </ul>
<p>2011.08.12 v0.5.4 (unstable) <p>2011.09.09 v0.5.6 (unstable)
<ul class="release"> <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.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.4/node.exe"><code>node.exe</code> Windows executable</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.4/api/index.html">Documentation</a> <li><a href="http://nodejs.org/docs/v0.5.6/api/index.html">Documentation</a>
</ul> </ul>

4
doc/template.html

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<meta charset="UTF-8" /> <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="icon" href="/favicon.ico" />
<link type="image/x-icon" rel="shortcut 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" /> <link rel="stylesheet" href="assets/style.css" type="text/css" media="all" />
@ -11,7 +11,7 @@
<body> <body>
<div id="container"> <div id="container">
<header> <header>
<h1>Node.js v0.4.11 Manual &amp; Documentation</h1> <h1>Node.js v0.4.12 Manual &amp; Documentation</h1>
<div id="gtoc"> <div id="gtoc">
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p> <p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
</div> </div>

2
src/node_version.h

@ -28,7 +28,7 @@
#define NODE_MAJOR_VERSION 0 #define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4 #define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 12 #define NODE_PATCH_VERSION 12
#define NODE_VERSION_IS_RELEASE 0 #define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY #ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

Loading…
Cancel
Save