From 220e61c1f65bf4db09699fcf6399c0809c0bc446 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 21 Oct 2011 17:02:11 -0700 Subject: [PATCH] Bump version to v0.5.10 --- AUTHORS | 5 +++++ ChangeLog | 50 ++++++++++++++++++++++++++++++++++++++++++++++ doc/index.html | 10 +++++----- doc/template.html | 4 ++-- src/node_version.h | 2 +- 5 files changed, 63 insertions(+), 8 deletions(-) diff --git a/AUTHORS b/AUTHORS index 9ab9a24f64e356..05ae3610b27732 100644 --- a/AUTHORS +++ b/AUTHORS @@ -222,3 +222,8 @@ Ben Leslie Christian Tellnes Colton Baker Tyler Larson +Tomasz Janczuk +Ilya Dmitrichenko +Simen Brekken +Guglielmo Ferri <44gatti@gmail.com> +Thomas Parslow diff --git a/ChangeLog b/ChangeLog index 92f8dd735711c7..5f472333ec9348 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,53 @@ +2011.10.21, Version 0.5.10 (unstable) + +* Remove cmake build system, support for Cygwin, legacy code base, + process.ENV, process.ARGV, process.memoryUsage().vsize, os.openOSHandle + +* Documentation improvments (Igor Zinkovsky, Bert Belder, Ilya Dmitrichenko, +koichik, Maciej MaƂecki, Guglielmo Ferri, isaacs) + +* Performance improvements (Daniel Ennis, Bert Belder, Ben Noordhuis) + +* Long process.title support (Ben Noordhuis) + +* net: register net.Server callback only once (Simen Brekken) + +* net: fix connect queue bugs (Ben Noordhuis) + +* debugger: fix backtrace err handling (Fedor Indutny) + +* Use getaddrinfo instead of c-ares for dns.lookup + +* Emit 'end' from crypto streams on close + +* repl: print out `undefined` (Nathan Rajlich) + +* #1902 buffer: use NO_NULL_TERMINATION flag (koichik) + +* #1907 http: Added support for HTTP PATCH verb (Thomas Parslow) + +* #1644 add GetCPUInfo on windows (Karl Skomski) + +* #1484, #1834, #1482, #771 Don't use a separate context for the repl. + (isaacs) + +* #1882 zlib Update 'availOutBefore' value, and test (isaacs) + +* #1888 child_process.fork: don't modify args (koichik) + +* #1516 tls: requestCert unusable with Firefox and Chrome (koichik) + +* #1467 tls: The TLS API is inconsistent with the TCP API (koichik) + +* #1894 net: fix error handling in listen() (koichik) + +* #1860 console.error now goes through uv_tty_t + +* Upgrade V8 to 3.7.0 + +* Upgrade GYP to r1081 + + 2011.10.10, Version 0.5.9 (unstable) * fs.watch interface backed by kqueue, inotify, and ReadDirectoryChangesW diff --git a/doc/index.html b/doc/index.html index 61767095253795..f20f13f10aa65c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,7 +27,7 @@
  • ChangeLog
  • About
  • v0.4.12 docs
  • -
  • v0.5.9 docs
  • +
  • v0.5.10 docs

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

    Download

  • Documentation -

    2011.10.10 v0.5.9 (unstable) +

    2011.10.10 v0.5.21 (unstable)

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

    Node.js v0.5.9 Manual & Documentation

    +

    Node.js v0.5.10 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index 35f5ee4de9a132..47f17f9c76ebb5 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 10 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)