diff --git a/AUTHORS b/AUTHORS index 625580c40534ac..c5a9261d21b9f9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -148,3 +148,6 @@ Michael W Sean Braithwaite Anders Conbere Devin Torres +Theo Schlossnagle +Kai Chen +Daniel C <333222@gmail.com> diff --git a/ChangeLog b/ChangeLog index 7455b572055b98..d204ce6dea653f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,27 @@ -2010.12.16, Version 0.3.2 (unstable) +2011.01.02, Version 0.3.3 (unstable) + +* TLS improvements. + +* url.parse(url, true) defaults query field to {} (Jeremy Martin) + +* Upgrade V8 to 3.0.4 + +* Handle ECONNABORT properly (Theo Schlossnagle) + +* Fix memory leaks (Tom Hughes) + +* Add os.cpus(), os.freemem(), os.totalmem(), os.loadavg() and other + functions for OSX, Linux, and Cygwin. (Brian White) + +* Fix REPL syntax error bug (GH-543), improve how REPL commands are + evaulated. + +* Use process.stdin instead of process.openStdin(). + +* Disable TLS tests when node doesn't have OpenSSL. + + +2010.12.16, Version 0.3.2 (unstable), 4bb914bde9f3c2d6de00853353b6b8fc9c66143a * Rip out the old (broken) TLS implementation introduce new tested implementation and API. See docs. HTTPS not supported in this release. diff --git a/doc/index.html b/doc/index.html index da1c96296d9d21..7efb94bc27de43 100644 --- a/doc/index.html +++ b/doc/index.html @@ -23,7 +23,7 @@
  • About
  • Links
  • Contributing
  • -
  • v0.3.2 docs
  • +
  • v0.3.3 docs
  • v0.2.6 docs
  • @@ -92,9 +92,9 @@

    Download

    - Unstable: 2010.12.16 - node-v0.3.2.tar.gz - (Documentation) + Unstable: 2011.01.02 + node-v0.3.3.tar.gz + (Documentation)

    Historical: versions, docs

    diff --git a/src/node_version.h b/src/node_version.h index 51798bc6a5c8de..e1a92461ebf090 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 3 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)