diff --git a/AUTHORS b/AUTHORS index 8c2a9055b9be2d..9c2969a6148c37 100644 --- a/AUTHORS +++ b/AUTHORS @@ -258,3 +258,6 @@ Michael Bernstein Guillermo Rauch Dan Williams Brandon Benvie +Nicolas LaCasse +Dan VerWeire +Matthew Fitzsimmons diff --git a/ChangeLog b/ChangeLog index 64d001dcf8f6c7..ede9435a6c254b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,22 @@ -2012.01.19, Version 0.6.8 (stable) +2012.01.27, Version 0.6.9 (stable) + +* dgram: Bring back missing functionality for Unix (Dan VerWeire, Roman Shtylman, Ben Noordnuis) + - Note: Windows UDP support not yet complete. + +* http: Fix parser memory leak (koichik) + +* zlib: Fix #2365 crashes on invalid input (Nicolas LaCasse) + +* module: fix --debug-brk on symlinked scripts (Fedor Indutny) + +* Documentation Restyling (Matthew Fitzsimmons) + +* Update npm to 1.1.0-3 (isaacs) + +* Windows: fix regression in stat() calls to C:\ (Bert Belder) + + +2012.01.19, Version 0.6.8 (stable), d18cebaf8a7ac701dabd71a3aa4eb0571db6a645 * Update V8 to 3.6.6.19 diff --git a/doc/about/index.html b/doc/about/index.html index 255b0f8bff39ab..f209769a5bb96f 100644 --- a/doc/about/index.html +++ b/doc/about/index.html @@ -130,7 +130,7 @@

Node's goal is to provide an easy way to build scalable
  • -

    Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    +

    Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    diff --git a/doc/community/index.html b/doc/community/index.html index 4fad90e815a49d..ef9bac5ae1c49a 100644 --- a/doc/community/index.html +++ b/doc/community/index.html @@ -180,7 +180,7 @@

    IRC

  • -

    Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    +

    Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

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