Browse Source

Bump to v0.5.1

v0.7.4-release v0.5.1
Ryan Dahl 13 years ago
parent
commit
f8bfa54d0f
  1. 24
      ChangeLog
  2. 23
      doc/index.html
  3. 4
      doc/pipe.css
  4. 6
      doc/template.html
  5. 2
      src/node_version.h
  6. 2
      wscript

24
ChangeLog

@ -1,8 +1,28 @@
In development, Version 0.5.1 (unstable)
2011.07.14, Version 0.5.1 (unstable)
* #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
2011.07.05, Version 0.5.0 (unstable)
* #1149 IDNA and Punycode support in url.parse
(Jeremy Selier, Ben Noordhuis, isaacs)
* Export $CC and $CXX to uv and V8's build systems
* Include pthread-win32 static libraries in build (Igor Zinkovsky)
* #1199, #1094 Fix fs can't handle large file on 64bit platform (koichik)
* #1281 Make require a public member of module (isaacs)
* #1303 Stream.pipe returns the destination (Elijah Insua)
* #1229 Addons should not -DEV_MULTIPLICITY=0 (Brian White)
* libuv backend improvements
* Upgrade V8 to 3.4.10
2011.07.05, Version 0.5.0 (unstable), ae7ed8482ea7e53c59acbdf3cf0e0a0ae9d792cd
* New non-default libuv backend to support IOCP on Windows.
Use --use-uv to enable.

23
doc/index.html

@ -27,7 +27,7 @@
<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.9/api">v0.4.9 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.1/api">v0.5.1 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>
@ -110,17 +110,18 @@ server.listen(1337, "127.0.0.1");
<a href="http://github.com/joyent/node/tree/master">git repo</a>
</p>
<p>
2011.06.29 (stable)
<a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>)
</p>
<p>2011.06.29 v0.4.9 (stable)
<ul class="release">
<li><a href="http://nodejs.org/dist/node-v0.4.9.tar.gz"><code>node-v0.4.9.tar.gz</code> Source Code</a>
<li><a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>
</ul>
<p>
2011.07.05 (unstable)
<a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>)
</p>
<p>2011.07.14 v0.5.1 (unstable)
<ul class="release">
<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>
<li><a href="http://nodejs.org/dist/v0.5.1/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.1/api/index.html">Documentation</a>
</ul>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

4
doc/pipe.css

@ -97,3 +97,7 @@ a:hover { text-decoration: underline; }
.desktops {
font-size: 14px;
}
.release {
margin: 0 0 0 2em;
}

6
doc/template.html

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>{{section}}Node.js Manual &amp; Documentation</title>
<title>{{section}}Node.js v0.5.1 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" />
@ -10,7 +10,7 @@
<body>
<div id="container">
<header>
<h1>Node.js Manual &amp; Documentation</h1>
<h1>Node.js v0.5.1 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>
@ -22,4 +22,4 @@
<script type="text/javascript" src="assets/sh_javascript.min.js"></script>
<script type="text/javascript">highlight(undefined, undefined, 'pre');</script>
</body>
</html>
</html>

2
src/node_version.h

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

2
wscript

@ -893,7 +893,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
, 'VERSION' : '0.5.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
, 'VERSION' : '0.5.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x

Loading…
Cancel
Save