Skip to content

Commit 74a1fc3

Browse files
committed
Bump version to 0.2.5
1 parent 44fa89c commit 74a1fc3

File tree

5 files changed

+48
-7
lines changed

5 files changed

+48
-7
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ Joshua Peek <josh@joshpeek.com>
127127
Nathan Rajlich <nathan@tootallnate.net>
128128
Tom Hughes <tom.hughes@palm.com>
129129
Vitali Lovich <vitali.lovich@palm.com>
130+
Guillaume Tuton <guillaume@tuton.fr>

ChangeLog

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
1-
2010.10.24, Version 0.2.4
1+
2010.11.16, Version 0.2.5
2+
3+
* Add ref to buffer during fs.write and fs.read. Sometimes buffers
4+
would be GCed before making it to the thread pool.
5+
6+
* Fix http buffer pushing bug:
7+
http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
8+
9+
* Gracefully handle EMFILE and server.maxConnections
10+
11+
* "node --eval" evals in the global scope. (Jorge Chamorro Bieling)
12+
13+
* Handle cyclic links smarter in fs.realpath (isaacs, Issue #167)
14+
15+
* Rewrite libeio After callback to use req->result instead of req->errorno
16+
for error checking (Micheil Smith)
17+
18+
* Removed range read optimization as it doesn't work with libeio. (Chandra
19+
Sekar S)
20+
21+
* Make writes to process.env update the real environment (Ben Noordhuis)
22+
23+
* Set FD_CLOEXEC flag on stdio FDs before spawning. (Guillaume Tuton)
24+
25+
* Upgrade http-parser
26+
27+
* Readline: Switch \n with \r\n for all strings printed out.
28+
Simplify displayPrompt
29+
30+
* Fix segfault on test-crypto
31+
32+
* Add --profile flag to configure script, enables gprof profiling. (Ben
33+
Noordhuis)
34+
35+
* writeFileSync could exhibit pathological behavior when a buffer could
36+
not be written to the file in a single write() call. (isaacs)
37+
38+
* Fix OS::GetExecutablePath for platform_none shouldn't return garbage.
39+
40+
41+
2010.10.24, Version 0.2.4, 428a67012158eb2ff478a0dc58336e85e4c6399a
242

343
* Add --eval to command line options (TJ Holowaychuk)
444

doc/api_header.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ <h2 id="download">Download</h2>
8989
<a href="http://github.com/ry/node/tree/master">git repo</a>
9090
</p>
9191
<p>
92-
Stable: 2010.10.24
93-
<a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
92+
Stable: 2010.11.16
93+
<a href="http://nodejs.org/dist/node-v0.2.5.tar.gz">node-v0.2.5.tar.gz</a>
9494
</p>
9595

9696
<p>
97-
Unstable: 2010.10.23
98-
<a href="http://nodejs.org/dist/node-v0.3.0.tar.gz">node-v0.3.0.tar.gz</a>
97+
Unstable: 2010.11.16
98+
<a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</a>
9999
</p>
100100

101101
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 2
9-
#define NODE_PATCH_VERSION 4
9+
#define NODE_PATCH_VERSION 5
1010

1111
#ifndef NODE_STRINGIFY
1212
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)