diff --git a/AUTHORS b/AUTHORS index d9b6061639c86f..0072239fc999a0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -202,3 +202,19 @@ SAWADA Tadashi Logan Smyth Christopher Wright Mickaël Delahaye +Aku Kotkavuo +Peter Bright +Glen Low +Thomas Shinnick +Antranig Basman +Maciej Małecki +Evan Martin +Peter Lyons +jkummerow@chromium.org +Jann Horn +Abimanyu Raja +Karl Skomski +Niclas Hoyer +Michael Jackson +Ashok Mudukutore +Sean Cunningham diff --git a/ChangeLog b/ChangeLog index 93d925e1a73482..54b57818ca1f10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,39 @@ +2011.09.16, Version 0.5.7 (unstable) + +* Upgrade V8 to 3.6.4 + +* Improve Windows compatibility + +* Documentation improvements + +* Debugger and REPL improvements (Fedor Indutny) + +* Add legacy API support: net.Stream(fd), process.stdout.writable, + process.stdout.fd + +* Fix mkdir EEXIST handling (isaacs) + +* Use net_uv instead of net_legacy for stdio + +* Do not load readline from util.inspect + +* #1673 Fix bug related to V8 context with accessors (Fedor Indutny) + +* #1634 util: Fix inspection for Error (koichik) + +* #1645 fs: Add positioned file writing feature to fs.WriteStream (Thomas + Shinnick) + +* #1637 fs: Unguarded fs.watchFile cache statWatchers checking fixed (Thomas + Shinnick) + +* #1695 Forward customFds to ChildProcess.spawn + +* #1707 Fix hasOwnProperty security problem in querystring (isaacs) + +* #1719 Drain OpenSSL error queue + + 2011.09.08, Version 0.5.6 (unstable) * #345, #1635, #1648 Documentation improvements (Thomas Shinnick, diff --git a/doc/index.html b/doc/index.html index 113d05620940af..ca0603a3b61111 100644 --- a/doc/index.html +++ b/doc/index.html @@ -26,8 +26,8 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.4.11 docs
  • -
  • v0.5.6 docs
  • +
  • v0.4.12 docs
  • +
  • v0.5.7 docs

  • Wiki
  • Blog
  • @@ -110,17 +110,17 @@

    Download

    git repo

    -

    2011.08.17 v0.4.11 (stable) +

    2011.09.15 v0.4.12 (stable)

    -

    2011.09.09 v0.5.6 (unstable) +

    2011.09.16 v0.5.7 (unstable)

    diff --git a/doc/template.html b/doc/template.html index b13532384fcdbb..86cf4350f1b529 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ - {{section}}Node.js v0.5.6 Manual & Documentation + {{section}}Node.js v0.5.7 Manual & Documentation @@ -11,7 +11,7 @@
    -

    Node.js v0.5.6 Manual & Documentation

    +

    Node.js v0.5.7 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index 509270eea1318c..4b1cb72c3a0fce 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 5 #define NODE_PATCH_VERSION 7 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)