diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-01-16 15:12:28 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-16 15:12:28 -0800 |
commit | b622bc6305e3c675e0edfcdbaa387d849ad0bba0 (patch) | |
tree | bd15ec8d04136b152a63cdfe5a5c74cc258a85f8 | |
parent | 0263f01475011691f6fbfbf32dceb28b56b69232 (diff) | |
download | node-b622bc6305e3c675e0edfcdbaa387d849ad0bba0.tar.gz |
Bump version to v0.3.5v0.3.5
-rw-r--r-- | ChangeLog | 17 | ||||
-rw-r--r-- | doc/index.html | 8 | ||||
-rw-r--r-- | src/node_version.h | 2 | ||||
-rw-r--r-- | tools/updateAuthors.awk | 2 |
4 files changed, 23 insertions, 6 deletions
@@ -1,3 +1,20 @@ +2011.01.16, Version 0.3.5 (unstable) + +* Built-in debugger improvements. + +* Add setsid, setuid, setgid options to child_process.spawn + (Isaac Schlueter) + +* tty module improvements. + +* Upgrade libev to 4.3, libeio to latest, c-ares to 1.7.4 + +* Allow third party hooks before main module load. + (See 496be457b6a2bc5b01ec13644b9c9783976159b2) + +* Don't stat() on cached modules. (Felix Geisendörfer) + + 2011.01.08, Version 0.3.4 (unstable) * Primordal mingw build (Bert Belder) diff --git a/doc/index.html b/doc/index.html index 4734d620c..825a77de0 100644 --- a/doc/index.html +++ b/doc/index.html @@ -23,7 +23,7 @@ <li><a href="#about">About</a></li> <li><a href="#links">Links</a></li> <li><a href="#contributing">Contributing</a></li> - <li><a href="http://nodejs.org/docs/v0.3.4/api">v0.3.4 docs</a></li> + <li><a href="http://nodejs.org/docs/v0.3.5/api">v0.3.5 docs</a></li> <li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li> </ol> </div> @@ -92,9 +92,9 @@ net.createServer(function (socket) { </p> <p> - Unstable: 2011.01.08 - <a href="http://nodejs.org/dist/node-v0.3.4.tar.gz">node-v0.3.4.tar.gz</a> - (<a href="http://nodejs.org/docs/v0.3.4/api/index.html">Documentation</a>) + Unstable: 2011.01.16 + <a href="http://nodejs.org/dist/node-v0.3.5.tar.gz">node-v0.3.5.tar.gz</a> + (<a href="http://nodejs.org/docs/v0.3.5/api/index.html">Documentation</a>) </p> <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p> diff --git a/src/node_version.h b/src/node_version.h index c66d3a1b1..9697a9dbb 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 5 -#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/tools/updateAuthors.awk b/tools/updateAuthors.awk index ad9335735..4ede6ffce 100644 --- a/tools/updateAuthors.awk +++ b/tools/updateAuthors.awk @@ -1,4 +1,4 @@ -# git log --pretty='format:%ae %an' | tail -r | awk -f updateAuthors.awk +# git log --pretty='format:%ae %an' | tac | awk -f tools/updateAuthors.awk { if (!x[$1]++) { #print $0 |