Skip to content

Commit

Permalink
Bump version to v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jan 16, 2011
1 parent 0263f01 commit b622bc6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -92,9 +92,9 @@ <h2 id="download">Download</h2>
</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>
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/updateAuthors.awk
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b622bc6

Please sign in to comment.