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.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 22, 2011
1 parent dd6faa5 commit 220e61c
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 8 deletions.
5 changes: 5 additions & 0 deletions AUTHORS
Expand Up @@ -222,3 +222,8 @@ Ben Leslie <benno@benno.id.au>
Christian Tellnes <christian@tellnes.no>
Colton Baker <github@netrefuge.net>
Tyler Larson <talltyler@gmail.com>
Tomasz Janczuk <tomasz@janczuk.org>
Ilya Dmitrichenko <errordeveloper@gmail.com>
Simen Brekken <simen.brekken@gmail.com>
Guglielmo Ferri <44gatti@gmail.com>
Thomas Parslow <tom@almostobsolete.net>
50 changes: 50 additions & 0 deletions ChangeLog
@@ -1,3 +1,53 @@
2011.10.21, Version 0.5.10 (unstable)

* Remove cmake build system, support for Cygwin, legacy code base,
process.ENV, process.ARGV, process.memoryUsage().vsize, os.openOSHandle

* Documentation improvments (Igor Zinkovsky, Bert Belder, Ilya Dmitrichenko,
koichik, Maciej Małecki, Guglielmo Ferri, isaacs)

* Performance improvements (Daniel Ennis, Bert Belder, Ben Noordhuis)

* Long process.title support (Ben Noordhuis)

* net: register net.Server callback only once (Simen Brekken)

* net: fix connect queue bugs (Ben Noordhuis)

* debugger: fix backtrace err handling (Fedor Indutny)

* Use getaddrinfo instead of c-ares for dns.lookup

* Emit 'end' from crypto streams on close

* repl: print out `undefined` (Nathan Rajlich)

* #1902 buffer: use NO_NULL_TERMINATION flag (koichik)

* #1907 http: Added support for HTTP PATCH verb (Thomas Parslow)

* #1644 add GetCPUInfo on windows (Karl Skomski)

* #1484, #1834, #1482, #771 Don't use a separate context for the repl.
(isaacs)

* #1882 zlib Update 'availOutBefore' value, and test (isaacs)

* #1888 child_process.fork: don't modify args (koichik)

* #1516 tls: requestCert unusable with Firefox and Chrome (koichik)

* #1467 tls: The TLS API is inconsistent with the TCP API (koichik)

* #1894 net: fix error handling in listen() (koichik)

* #1860 console.error now goes through uv_tty_t

* Upgrade V8 to 3.7.0

* Upgrade GYP to r1081


2011.10.10, Version 0.5.9 (unstable)

* fs.watch interface backed by kqueue, inotify, and ReadDirectoryChangesW
Expand Down
10 changes: 5 additions & 5 deletions doc/index.html
Expand Up @@ -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.12/api">v0.4.12 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.9/api">v0.5.9 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.5.10/api">v0.5.10 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 @@ -116,11 +116,11 @@ <h2 id="download">Download</h2>
<li><a href="http://nodejs.org/docs/v0.4.12/api/index.html">Documentation</a>
</ul>

<p>2011.10.10 v0.5.9 (unstable)
<p>2011.10.10 v0.5.21 (unstable)

This comment has been minimized.

Copy link
@TooTallNate

TooTallNate Oct 22, 2011

typo?

<ul class="release">
<li><a href="http://nodejs.org/dist/v0.5.9/node-v0.5.9.tar.gz"><code>node-v0.5.9.tar.gz</code> Source code</a>
<li><a href="http://nodejs.org/dist/v0.5.9/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.9/api/index.html">Documentation</a>
<li><a href="http://nodejs.org/dist/v0.5.10/node-v0.5.10.tar.gz"><code>node-v0.5.10.tar.gz</code> Source code</a>
<li><a href="http://nodejs.org/dist/v0.5.10/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.5.10/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.5.9 Manual &amp; Documentation</title>
<title>{{section}}Node.js v0.5.10 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.5.9 Manual &amp; Documentation</h1>
<h1>Node.js v0.5.10 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 @@ -29,7 +29,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 10
#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 220e61c

Please sign in to comment.