diff --git a/AUTHORS b/AUTHORS index 35d6f0b7312..7159091579f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -164,3 +164,7 @@ Konstantin Käfer Richard Rodger Andreas Reich Dean McNamee +Trevor Burnham +Zachary Scott +Arnout Kazemier + diff --git a/ChangeLog b/ChangeLog index 460c53dc630..bf60dc73453 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,21 @@ -2011.03.18, Version 0.4.3 (stable) +2011.03.26, Version 0.4.4 (stable) + +* CryptoStream.end shouldn't throw if not writable GH-820 + +* Drop out if connection destroyed before connect() GH-819 + +* expose https.Agent + +* Correctly setsid in tty.open GH-815 + +* Bug fix for failed buffer construction + +* Added support for removing .once listeners (GH-806) + +* Upgrade V8 to 3.1.8.5 + + +2011.03.18, Version 0.4.3 (stable), c095ce1a1b41ca015758a713283bf1f0bd41e4c4 * Don't decrease server connection counter again if destroy() is called more than once GH-431 (Andreas Reich, Anders Conbere) diff --git a/doc/index.html b/doc/index.html index 47d91c55dc0..4f5f5e27940 100644 --- a/doc/index.html +++ b/doc/index.html @@ -24,7 +24,7 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.4.3 docs
  • +
  • v0.4.4 docs

  • Wiki
  • Blog
  • @@ -106,9 +106,9 @@

    Download

    - 2011.03.18 - node-v0.4.3.tar.gz - (Documentation) + 2011.03.26 + node-v0.4.4.tar.gz + (Documentation)

    Historical: versions, docs

    diff --git a/src/node_version.h b/src/node_version.h index b686790374b..1ec1b3d012d 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 4 -#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 c1b0b1e437c..76c0c5927e0 100644 --- a/wscript +++ b/wscript @@ -870,7 +870,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.3' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.4.4' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x