From 865b077819a9271a29f982faaef99dc635b57fbc Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 4 Nov 2011 16:40:14 -0700 Subject: [PATCH] Bump version to v0.6.0 --- AUTHORS | 5 +++++ ChangeLog | 56 +++++++++++++++++++++++++++++++++++++++++++++- doc/index.html | 10 ++++----- doc/template.html | 4 ++-- src/node_version.h | 6 ++--- 5 files changed, 70 insertions(+), 11 deletions(-) diff --git a/AUTHORS b/AUTHORS index 47c8438bb0a7fd..0ce23078070042 100644 --- a/AUTHORS +++ b/AUTHORS @@ -227,3 +227,8 @@ Ilya Dmitrichenko Simen Brekken Guglielmo Ferri <44gatti@gmail.com> Thomas Parslow +Ryan Emery +Zachary Scott +Jordan Sissel +Matt Robenolt +Jacob H.C. Kragh diff --git a/ChangeLog b/ChangeLog index 717c84c6fff48b..f5adfa60919276 100644 --- a/ChangeLog +++ b/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 diff --git a/doc/index.html b/doc/index.html index 86177edfafe9ee..59b61acf09036a 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,7 +27,7 @@
  • ChangeLog
  • About
  • v0.4.12 docs
  • -
  • v0.5.10 docs
  • +
  • v0.6.0 docs

  • Wiki
  • Blog
  • @@ -116,11 +116,11 @@

    Download

  • Documentation -

    2011.10.21 v0.5.10 (unstable) +

    2011.11.04 v0.6.0 (unstable)

    diff --git a/doc/template.html b/doc/template.html index 09b2685688c912..9ae1cee9de4e24 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ - {{section}}Node.js v0.5.10 Manual & Documentation + {{section}}Node.js v0.6.0 Manual & Documentation @@ -11,7 +11,7 @@
    -

    Node.js v0.5.10 Manual & Documentation

    +

    Node.js v0.6.0 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index fb5f1b9e4d9c5c..1b83c5bcba4ded 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -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)