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.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 5, 2011
1 parent 96fe504 commit 865b077
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 11 deletions.
5 changes: 5 additions & 0 deletions AUTHORS
Expand Up @@ -227,3 +227,8 @@ Ilya Dmitrichenko <errordeveloper@gmail.com>
Simen Brekken <simen.brekken@gmail.com>
Guglielmo Ferri <44gatti@gmail.com>
Thomas Parslow <tom@almostobsolete.net>
Ryan Emery <seebees@gmail.com>
Zachary Scott <zachary@zacharyscott.net>
Jordan Sissel <jls@semicomplete.com>
Matt Robenolt <matt@ydekproductions.com>
Jacob H.C. Kragh <jhckragh@gmail.com>
56 changes: 55 additions & 1 deletion ChangeLog
@@ -1,4 +1,58 @@
2011.10.21, Version 0.5.10 (unstable)
2011.11.04, Version 0.6.0 (stable)

* print undefined on undefined values in REPL (Nathan Rajlich)

* doc improvements (koichik, seebees, bnoordhuis,
Maciej Małecki, Jacob Kragh)

* support native addon loading in windows (Bert Belder)

* rename getNetworkInterfaces() to networkInterfaces() (bnoordhuis)

* add pending accepts knob for windows (igorzi)

* http.request(url.parse(x)) (seebees)

* #1929 zlib Respond to 'resume' events properly (isaacs)

* stream.pipe: Remove resume and pause events

* test fixes for windows (igorzi)

* build system improvements (bnoordhuis)

* #1936 tls: does not emit 'end' from EncryptedStream (koichik)

* #758 tls: add address(), remoteAddress/remotePort

* #1399 http: emit Error object after .abort() (bnoordhuis)

* #1999 fs: make mkdir() default to 0777 permissions (bnoordhuis)

* #2001 fix pipe error codes

* #2002 Socket.write should reset timeout timer

* stdout and stderr are blocking when associated with file too.

* remote debugger support on windows (Bert Belder)

* convenience methods for zlib (Matt Robenolt)

* process.kill support on windows (igorzi)

* process.uptime() support on windows (igorzi)

* Return IPv4 addresses before IPv6 addresses from getaddrinfo

* util.inspect improvements (Nathan Rajlich)

* cluster module api changes

* Downgrade V8 to 3.6.6.6


2011.10.21, Version 0.5.10 (unstable), 220e61c1f65bf4db09699fcf6399c0809c0bc446

* Remove cmake build system, support for Cygwin, legacy code base,
process.ENV, process.ARGV, process.memoryUsage().vsize, os.openOSHandle
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.10/api">v0.5.10 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.6.0/api">v0.6.0 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.21 v0.5.10 (unstable)
<p>2011.11.04 v0.6.0 (unstable)

This comment has been minimized.

Copy link
@windyrobin

windyrobin Nov 5, 2011

shoule be "Stable" ??

This comment has been minimized.

Copy link
@bnoordhuis

bnoordhuis Nov 5, 2011

Member

Good catch. Fixed in 099c717.

<ul class="release">
<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>
<li><a href="http://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz"><code>node-v0.6.0.tar.gz</code> Source code</a>
<li><a href="http://nodejs.org/dist/v0.6.0/node.exe"><code>node.exe</code> Windows executable</a>
<li><a href="http://nodejs.org/docs/v0.6.0/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.10 Manual &amp; Documentation</title>
<title>{{section}}Node.js v0.6.0 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.10 Manual &amp; Documentation</h1>
<h1>Node.js v0.6.0 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
6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -27,9 +27,9 @@
#define NODE_VERSION_H

#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 5
#define NODE_PATCH_VERSION 11
#define NODE_VERSION_IS_RELEASE 0
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 0
#define NODE_VERSION_IS_RELEASE 1

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

0 comments on commit 865b077

Please sign in to comment.