diff --git a/AUTHORS b/AUTHORS index 5cfa4152507554..8ac112a9c07157 100644 --- a/AUTHORS +++ b/AUTHORS @@ -157,3 +157,4 @@ Daniel Ennis Carter Allen Greg Hughes David Trejo +Joe Walnes diff --git a/ChangeLog b/ChangeLog index 830be20e23c2fd..eac25dc97a45be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +2011.02.04, Version 0.3.8 (unstable) + +* Add req.abort() for client side requests. + +* Add exception.code for easy testing: + Example: if (err.code == 'EADDRINUSE'); + +* Add process.stderr. + +* require.main is the main module. (Isaac Schlueter) + +* dgram: setMulticastTTL, setMulticastLoopback and addMembership. + (Joe Walnes) + +* Fix throttling in TLS connections + +* Add socket.bufferSize + +* MinGW improvements (Bert Belder) + +* Upgrade V8 to 3.1.1 + 2011.01.27, Version 0.3.7 (unstable) * Expose agent in http and https client. (Mikeal Rogers) diff --git a/doc/index.html b/doc/index.html index cd8cb04a79eb92..533ccd6c404a48 100644 --- a/doc/index.html +++ b/doc/index.html @@ -20,7 +20,7 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.3.7 docs
  • +
  • v0.3.8 docs
  • v0.2.6 docs

  • Wiki
  • @@ -96,9 +96,9 @@

    Download

    - Unstable: 2011.01.27 - node-v0.3.7.tar.gz - (Documentation) + Unstable: 2011.02.04 + node-v0.3.8.tar.gz + (Documentation)

    Historical: versions, docs

    diff --git a/src/node_version.h b/src/node_version.h index d50f6492dd3e84..0f18b114bcd1c5 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -7,7 +7,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 3 #define NODE_PATCH_VERSION 8 -#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 1c5d9e2156ccae..04591efa852c00 100644 --- a/wscript +++ b/wscript @@ -775,7 +775,7 @@ def build(bld): , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'PREFIX' : safe_path(program.env["PREFIX"]) - , 'VERSION' : '0.3.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.3.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x