diff --git a/AUTHORS b/AUTHORS index 0072239fc999a0..9ab9a24f64e356 100644 --- a/AUTHORS +++ b/AUTHORS @@ -218,3 +218,7 @@ Niclas Hoyer Michael Jackson Ashok Mudukutore Sean Cunningham +Ben Leslie +Christian Tellnes +Colton Baker +Tyler Larson diff --git a/ChangeLog b/ChangeLog index e2dd8389be2882..9b2d0ad2c04fe7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,29 @@ -2011.09.30, Version 0.5.8 (unstable) +2011.10.10, Version 0.5.9 (unstable) + +* fs.watch interface backed by kqueue, inotify, and ReadDirectoryChangesW + (Igor Zinkovsky, Ben Noordhuis) + +* add dns.resolveTxt (Christian Tellnes) + +* Remove legacy http library (Ben Noordhuis) + +* child_process.fork returns and works on Windows. Allows passing handles. + (Igor Zinkovsky, Bert Belder) + +* #1774 Lint and clean up for --harmony_block_scoping (Tyler Larson, Colton + Baker) + +* #1813 Fix ctrl+c on Windows (Bert Belder) + +* #1844 unbreak --use-legacy (Ben Noordhuis) + +* process.stderr now goes through libuv. Both process.stdout and + process.stderr are blocking when referencing a TTY. + +* net_uv performance improvements (Ben Noordhuis, Bert Belder) + + +2011.09.30, Version 0.5.8 (unstable), 7cc17a0cea1d25188c103745a7d0c24375e3a609 * zlib bindings (isaacs) diff --git a/doc/index.html b/doc/index.html index 2cf1bedc16fefe..61767095253795 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,7 +27,7 @@
  • ChangeLog
  • About
  • v0.4.12 docs
  • -
  • v0.5.8 docs
  • +
  • v0.5.9 docs

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

    Download

  • Documentation -

    2011.09.30 v0.5.8 (unstable) +

    2011.10.10 v0.5.9 (unstable)

    diff --git a/doc/template.html b/doc/template.html index 71d307749b4bf2..2c00d04ddd7621 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ - {{section}}Node.js v0.5.8 Manual & Documentation + {{section}}Node.js v0.5.9 Manual & Documentation @@ -11,7 +11,7 @@
    -

    Node.js v0.5.8 Manual & Documentation

    +

    Node.js v0.5.9 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index c66f1b1c1cc576..59cd682f376b65 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 9 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)