diff --git a/AUTHORS b/AUTHORS index 1eb73d6df880af..04d273a8b64984 100644 --- a/AUTHORS +++ b/AUTHORS @@ -189,3 +189,11 @@ Kip Gebhardt Stefan Rusu Wojciech Wnętrzak Reid Burke +Niklas Fiekas +Adam Luikart +avz +Jeremy Selier +Igor Zinkovsky +Shigeki Ohtsu +vegorov@chromium.org +Pierre-Alexandre St-Jean diff --git a/ChangeLog b/ChangeLog index a68e1dbef0e3a2..cb07441266a2cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,27 @@ -2011.07.14, Version 0.5.1 (unstable) +2011.07.22, Version 0.5.2 (unstable) + +* libuv improvements; named pipe support + +* #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis) + +* #1348 remove require.paths (isaacs) + +* #1349 Delimit NODE_PATH with ; on Windows (isaacs) + +* #1335 Remove EventEmitter from C++ + +* #1357 Load json files with require() (isaacs) + +* #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick) + +* Fixed: GC was being run too often. + +* Upgrade V8 to 3.4.14 + +* doc improvements + + +2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8 * #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev) diff --git a/doc/index.html b/doc/index.html index 4e3fc5c7741a37..c0d31c4393bcbb 100644 --- a/doc/index.html +++ b/doc/index.html @@ -27,7 +27,7 @@
  • ChangeLog
  • About
  • v0.4.10 docs
  • -
  • v0.5.1 docs
  • +
  • v0.5.2 docs

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

    Download

  • Documentation -

    2011.07.14 v0.5.1 (unstable) +

    2011.07.22 v0.5.2 (unstable)

    diff --git a/doc/template.html b/doc/template.html index 9127a0ddae6d37..a3772832f05d55 100644 --- a/doc/template.html +++ b/doc/template.html @@ -1,7 +1,7 @@ - {{section}}Node.js v0.5.1 Manual & Documentation + {{section}}Node.js v0.5.2 Manual & Documentation @@ -10,7 +10,7 @@
    -

    Node.js v0.5.1 Manual & Documentation

    +

    Node.js v0.5.2 Manual & Documentation

    diff --git a/src/node_version.h b/src/node_version.h index 24b45b7a7b4a2c..7ecafd8c399d17 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -28,7 +28,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 5 #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) diff --git a/wscript b/wscript index e354e78b595b56..490bb0f9af83c3 100644 --- a/wscript +++ b/wscript @@ -897,7 +897,7 @@ def build(bld): , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'PREFIX' : safe_path(program.env["PREFIX"]) - , 'VERSION' : '0.5.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.5.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x