From a745d19ce7d1c0e3778371af4f0346be70cf2c8e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 17 Aug 2011 18:17:57 -0700 Subject: [PATCH] Bump version to v0.4.11 --- AUTHORS | 5 +++++ ChangeLog | 28 +++++++++++++++++++++++++++- doc/index.html | 18 +++++++++--------- doc/template.html | 7 ++++--- src/node_version.h | 2 +- 5 files changed, 46 insertions(+), 14 deletions(-) diff --git a/AUTHORS b/AUTHORS index 1eb73d6df88..2feb56e9642 100644 --- a/AUTHORS +++ b/AUTHORS @@ -189,3 +189,8 @@ Kip Gebhardt Stefan Rusu Wojciech Wnętrzak Reid Burke +Vicente Jimenez Aguilar +SAWADA Tadashi +Logan Smyth +Christopher Wright +Mickaël Delahaye diff --git a/ChangeLog b/ChangeLog index c46dd61f9e3..310800a6a6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,30 @@ -2011.07.19, Version 0.4.10 (stable) +2011.08.17, Version 0.4.11 (stable) + +* #738 Fix crypto encryption/decryption with Base64. (SAWADA Tadashi) + +* #1202 net.createConnection defer DNS lookup error events to next tick + (Ben Noordhuis) + +* #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick) + +* #1417 Fix http.ClientRequest crashes if end() was called twice + +* #1497 querystring: Replace 'in' test with 'hasOwnProperty' (isaacs) + +* #1546 http perf improvement + +* fix memleak in libeio (Tom Hughes) + +* cmake improvements (Tom Hughes) + +* node_net.cc: fix incorrect sizeof() (Tom Hughes) + +* Windows/cygwin: no more GetConsoleTitleW errors on XP (Bert Belder) + +* Doc improvments (koichik, Logan Smyth, Ben Noordhuis, Arnout Kazemier) + + +2011.07.19, Version 0.4.10 (stable), 1b8dd65d6e3b82b6863ef38835cc436c5d30c1d5 * #394 Fix Buffer drops last null character in UTF-8 diff --git a/doc/index.html b/doc/index.html index 4e3fc5c7741..9f1ab403bd4 100644 --- a/doc/index.html +++ b/doc/index.html @@ -26,8 +26,8 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.4.10 docs
  • -
  • v0.5.1 docs
  • +
  • v0.4.11 docs
  • +
  • v0.5.4 docs

  • Wiki
  • Blog
  • @@ -110,17 +110,17 @@

    Download

    git repo

    -

    2011.07.19 v0.4.10 (stable) +

    2011.08.17 v0.4.11 (stable)

    -

    2011.07.14 v0.5.1 (unstable) +

    2011.08.12 v0.5.4 (unstable)

    diff --git a/doc/template.html b/doc/template.html index 19bca35f374..629dd613bb4 100644 --- a/doc/template.html +++ b/doc/template.html @@ -1,7 +1,8 @@ - {{section}}Node.js Manual & Documentation + + {{section}}Node.js v0.4.11 Manual & Documentation @@ -10,7 +11,7 @@
    -

    Node.js Manual & Documentation

    +

    Node.js v0.4.11 Manual & Documentation

    @@ -22,4 +23,4 @@

    Node.js Manual & Documentation

    - \ No newline at end of file + diff --git a/src/node_version.h b/src/node_version.h index 8dbd3c44ef6..9f890bfdc78 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -28,7 +28,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 4 #define NODE_PATCH_VERSION 11 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)