From: Ryan Dahl Date: Fri, 16 Sep 2011 22:40:39 +0000 (-0700) Subject: Bump version to v0.5.7 X-Git-Tag: v0.5.7^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=558241166c4f3c516e5a448e676db0b57119212f;p=platform%2Fupstream%2Fnodejs.git Bump version to v0.5.7 --- diff --git a/AUTHORS b/AUTHORS index d9b606163..0072239fc 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 93d925e1a..54b57818c 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 113d05620..ca0603a3b 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 @@ server.listen(1337, "127.0.0.1"); 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 b13532384..86cf4350f 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 509270eea..4b1cb72c3 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)