diff --git a/AUTHORS b/AUTHORS index fd81948b7042d1..aeaa3df82f5b10 100644 --- a/AUTHORS +++ b/AUTHORS @@ -161,3 +161,4 @@ Joe Walnes Koichi Kobayashi Daniel Gröber Konstantin Käfer +Richard Rodger diff --git a/ChangeLog b/ChangeLog index 11c29cd3597950..4b4b7a218a73fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,36 @@ +2011.02.19, Version 0.4.1 (stable) + +* Fixed field merging with progressive fields on writeHead() + (TJ Holowaychuk) + +* Make the repl respect node_modules folders (isaacs) + +* Fix for DNS fail in HTTP request (Richard Rodger) + +* Default to port 80 for http.request and http.get. + +* Improve V8 support for Cygwin (Bert Belder) + +* Fix fs.open param parsing. (Felix Geisendörfer) + +* Fixed null signal. + +* Fix various HTTP and HTTPS bugs + +* cmake improvements (Tom Hughes) + +* Fix: TLS sockets should not be writable after 'end' + +* Fix os.cpus() on cygwin (Brian White) + +* MinGW: OpenSSL support (Bert Belder) + +* Upgrade V8 to 3.1.5, libev to 4.4. + + 2011.02.10, Version 0.4.0 (stable) -* require() improvements (isaacs) +* require() improvements (isaacs) - understand package.json (isaacs) - look for 'node_modules' dir diff --git a/doc/index.html b/doc/index.html index 797b121b0fd2e4..7ae60221873f91 100644 --- a/doc/index.html +++ b/doc/index.html @@ -20,7 +20,7 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.4.0 docs
  • +
  • v0.4.1 docs

  • Wiki
  • @@ -90,9 +90,9 @@

    Download

    - 2011.02.10 - node-v0.4.0.tar.gz - (Documentation) + 2011.02.19 + node-v0.4.1.tar.gz + (Documentation)

    Historical: versions, docs

    diff --git a/src/node_version.h b/src/node_version.h index f94feb2626c541..6b10128378246a 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -7,7 +7,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 4 #define NODE_PATCH_VERSION 1 -#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 83beea5e97b46d..de5ee45bce4a58 100644 --- a/wscript +++ b/wscript @@ -824,7 +824,7 @@ def build(bld): , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'PREFIX' : safe_path(program.env["PREFIX"]) - , 'VERSION' : '0.4.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x