diff --git a/ChangeLog b/ChangeLog index 2a0b06aed9c113..b6db61b0efe1df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +2011.11.18, Version 0.6.2 (stable) + + * doc improvements (Artur Adib, Trevor Burnham, Ryan Emery, Trent Mick) + + * timers: remember extra setTimeout() arguments when timeout==0 + + * punycode: use Mathias Bynens's punycode library, it's more compliant + + * repl: improved tab completion (Ryan Emery) + + * buffer: fix range checks in .writeInt() functions (Lukasz Walukiewicz) + + * tls: make cipher list configurable + + * addons: make Buffer and ObjectWrap visible to Windows add-ons (Bert Belder) + + * crypto: add PKCS#1 a.k.a RSA public key verification support + + * windows: fix stdout writes when redirected to nul + + * sunos: fix build on Solaris and Illumos + + * Upgrade V8 to 3.6.6.8 + + 2011.11.11, Version 0.6.1 (stable) * doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA) diff --git a/doc/index.html b/doc/index.html index 7a641527e1941b..fb97c9121a42f6 100644 --- a/doc/index.html +++ b/doc/index.html @@ -26,7 +26,7 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.6.1 docs
  • +
  • v0.6.2 docs

  • Wiki
  • Blog
  • @@ -105,14 +105,14 @@

    Introduction

    Download

    -

    2011.11.11 v0.6.1 +

    2011.11.18 v0.6.2

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

    Node.js v0.6.1 Manual & Documentation

    +

    Node.js v0.6.2 Manual & Documentation

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