diff --git a/AUTHORS b/AUTHORS index 0ce23078070042..1fa19d3b270b18 100644 --- a/AUTHORS +++ b/AUTHORS @@ -232,3 +232,6 @@ Zachary Scott Jordan Sissel Matt Robenolt Jacob H.C. Kragh +Benjamin Pasero +Scott Anderson +Yoji SHIDARA diff --git a/ChangeLog b/ChangeLog index f5adfa60919276..2a0b06aed9c113 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,33 @@ -2011.11.04, Version 0.6.0 (stable) +2011.11.11, Version 0.6.1 (stable) + +* doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA) + +* crypto: make thread-safe (Ben Noordhuis) + +* fix process.kill error object + +* debugger: correctly handle source with multi-byte characters (Shigeki Ohtsu) + +* make stdout and stderr non-destroyable (Igor Zinkovsky) + +* fs: don't close uninitialized fs.watch handle (Ben Noordhuis) + +* #2026 fix man page install on BSDs (Ben Noordhuis) + +* #2040 fix unrecognized errno assert in uv_err_name + +* #2043 fs: mkdir() should call callback if mode is omitted + +* #2045 fs: fix fs.realpath on windows to return on error (Benjamin Pasero) + +* #2047 minor cluster improvements + +* #2052 readline get window columns correctly + +* Upgrade V8 to 3.6.6.7 + + +2011.11.04, Version 0.6.0 (stable), 865b077819a9271a29f982faaef99dc635b57fbc * print undefined on undefined values in REPL (Nathan Rajlich) diff --git a/doc/index.html b/doc/index.html index abe2b0e4b400f1..7a641527e1941b 100644 --- a/doc/index.html +++ b/doc/index.html @@ -26,7 +26,7 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.6.0 docs
  • +
  • v0.6.1 docs

  • Wiki
  • Blog
  • @@ -105,23 +105,22 @@

    Introduction

    Download

    -

    - git repo -

    - -

    2011.11.04 v0.6.0 +

    2011.11.11 v0.6.1

    Historical: versions, docs

    - For build instructions see - https://github.com/joyent/node/wiki/Installation + git repository

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

    Node.js v0.6.0 Manual & Documentation

    +

    Node.js v0.6.1 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index 3797e7321b92ba..396e8d86b62904 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 6 #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)