Skip to content

Commit ce9a54a

Browse files
committedNov 17, 2010
Bump version to v0.3.1
1 parent 03fa258 commit ce9a54a

File tree

4 files changed

+72
-9
lines changed

4 files changed

+72
-9
lines changed
 

‎AUTHORS

+2-1
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,5 @@ Sami Samhuri <sami.samhuri@gmail.com>
134134
Nikhil Marathe <nsm.nikhil@gmail.com>
135135
Vitali Lovich <vitali.lovich@palm.com>
136136
Stéphan Kochen <stephan@kochen.nl>
137-
137+
Oleg Efimov <efimovov@gmail.com>
138+
Guillaume Tuton <guillaume@tuton.fr>

‎ChangeLog

+63-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,66 @@
1-
2010.10.23, Version 0.3.0 (unstable)
1+
2010.11.16, Version 0.3.1 (unstable)
2+
3+
* TLS improvments (Paul Querna)
4+
- Centralize error handling in SecureStream
5+
- Add SecurePair for handling of a ssl/tls stream.
6+
7+
* New documentation organization (Micheil Smith)
8+
9+
* allowHalfOpen TCP connections disabled by default.
10+
11+
* Add C++ API for constructing fast buffer from string
12+
13+
* Move idle timers into its own module
14+
15+
* Gracefully handle EMFILE and server.maxConnections
16+
17+
* make "node --eval" eval in the global scope.
18+
(Jorge Chamorro Bieling)
19+
20+
* Let exit listeners know the exit code (isaacs)
21+
22+
* Handle cyclic links smarter in fs.realpath (isaacs)
23+
24+
* Remove node-repl (just use 'node' without args)
25+
26+
* Rewrite libeio After callback to use req->result instead of req->errorno
27+
for error checking (Micheil Smith)
28+
29+
* Remove warning about deprecating 'sys' - too aggressive
30+
31+
* Make writes to process.env update the real environment. (Ben Noordhuis)
32+
33+
* Set FD_CLOEXEC flag on stdio FDs before spawning. (Guillaume Tuton)
34+
35+
* Move ev_loop out of javascript
36+
37+
* Switch \n with \r\n for all strings printed out.
38+
39+
* Added support for cross compilation (Rasmus Andersson)
40+
41+
* Add --profile flag to configure script, enables gprof profiling.
42+
(Ben Noordhuis)
43+
44+
* writeFileSync could exhibit pathological behavior when a buffer
45+
could not be written to the file in a single write() call.
46+
47+
* new path.join behavior (isaacs)
48+
- Express desired path.join behavior in tests.
49+
- Update fs.realpath to reflect new path.join behavior
50+
- Update url.resolve() to use new path.join behavior.
51+
52+
* API: Move process.binding('evals') to require('vm')
53+
54+
* Fix V8 build on Cygwin (Bert Belder)
55+
56+
* Add ref to buffer during fs.write and fs.read
57+
58+
* Fix segfault on test-crypto
59+
60+
* Upgrade http-parser to latest and V8 to 2.5.3
61+
62+
63+
2010.10.23, Version 0.3.0 (unstable) 1582cfebd6719b2d2373547994b3dca5c8c569c0
264

365
* Bugfix: Do not spin on aceept() with EMFILE
466

‎doc/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ <h2 id="download">Download</h2>
8585
<a href="http://github.com/ry/node/tree/master">git repo</a>
8686
</p>
8787
<p>
88-
Stable: 2010.10.23
89-
<a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
90-
(<a href="http://nodejs.org/docs/v0.2.4/api.html">Documentation</a>)
88+
Stable: 2010.11.16
89+
<a href="http://nodejs.org/dist/node-v0.2.5.tar.gz">node-v0.2.5.tar.gz</a>
90+
(<a href="http://nodejs.org/docs/v0.2.5/api.html">Documentation</a>)
9191
</p>
9292

9393
<p>
94-
Unstable: 2010.10.23
95-
<a href="http://nodejs.org/dist/node-v0.3.0.tar.gz">node-v0.3.0.tar.gz</a>
96-
(<a href="http://nodejs.org/docs/v0.3.0/api.html">Documentation</a>)
94+
Unstable: 2010.11.16
95+
<a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</a>
96+
(<a href="http://nodejs.org/docs/v0.3.1/api/index.html">Documentation</a>)
9797
</p>
9898

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

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 3
99
#define NODE_PATCH_VERSION 1
10-
#define NODE_VERSION_IS_RELEASE 0
10+
#define NODE_VERSION_IS_RELEASE 1
1111

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

0 commit comments

Comments
 (0)
Please sign in to comment.