Skip to content

Commit ae7ed84

Browse files
committed
Bump to v0.5.0
1 parent 111305c commit ae7ed84

File tree

4 files changed

+66
-3
lines changed

4 files changed

+66
-3
lines changed

ChangeLog

+55
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
2011.07.05, Version 0.5.0 (unstable)
2+
3+
* New non-default libuv backend to support IOCP on Windows.
4+
Use --use-uv to enable.
5+
6+
* deprecate http.cat
7+
8+
* docs improved.
9+
10+
* add child_process.fork
11+
12+
* add fs.utimes() and fs.futimes() support (Ben Noordhuis)
13+
14+
* add process.uptime() (Tom Huges)
15+
16+
* add path.relative (Tony Huang)
17+
18+
* add os.getNetworkInterfaces()
19+
20+
* add remoteAddress and remotePort for client TCP connections
21+
(Brian White)
22+
23+
* add secureOptions flag, setting ciphers,
24+
SSL_OP_CRYPTOPRO_TLSEXT_BUG to TLS (Theo Schlossnagle)
25+
26+
* add process.arch (Nathan Rajlich)
27+
28+
* add reading/writing of floats and doubles from/to buffers (Brian White)
29+
30+
* Allow script to be read from stdin
31+
32+
* #477 add Buffer::fill method to do memset (Konstantin Käfer)
33+
34+
* #573 Diffie-Hellman support to crypto module (Håvard Stranden)
35+
36+
* #695 add 'hex' encoding to buffer (isaacs)
37+
38+
* #851 Update how REPLServer uses contexts (Ben Weaver)
39+
40+
* #853 add fs.lchow, fs.lchmod, fs.fchmod, fs.fchown (isaacs)
41+
42+
* #889 Allow to remove all EventEmitter listeners at once
43+
(Felix Geisendörfer)
44+
45+
* #926 OpenSSL NPN support (Fedor Indutny)
46+
47+
* #955 Change ^C handling in REPL (isaacs)
48+
49+
* #979 add support for Unix Domain Sockets to HTTP (Mark Cavage)
50+
51+
* #1173 #1170 add AMD, asynchronous module definition (isaacs)
52+
53+
* DTrace probes: support X-Forwarded-For (Dave Pacheco)
54+
55+
156
2011.06.29, Version 0.4.9 (stable)
257

358
* Improve documentation

doc/index.html

+9-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
2828
<li><a href="#about">About</a></li>
2929
<li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li>
30+
<li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li>
3031
<br/>
3132
<li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
3233
<li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -108,11 +109,18 @@ <h2 id="download">Download</h2>
108109
</p>
109110

110111
<p>
111-
2011.06.29
112+
2011.06.29 (stable)
112113
<a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a>
113114
(<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>)
114115
</p>
115116

117+
<p>
118+
2011.07.05 (unstable)
119+
<a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a>
120+
(<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>)
121+
</p>
122+
123+
116124
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
117125

118126
<p>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define NODE_MAJOR_VERSION 0
2929
#define NODE_MINOR_VERSION 5
3030
#define NODE_PATCH_VERSION 0
31-
#define NODE_VERSION_IS_RELEASE 0
31+
#define NODE_VERSION_IS_RELEASE 1
3232

3333
#ifndef NODE_STRINGIFY
3434
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ def build(bld):
876876
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
877877
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
878878
, 'PREFIX' : safe_path(program.env["PREFIX"])
879-
, 'VERSION' : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
879+
, 'VERSION' : '0.5.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
880880
}
881881
return x
882882

0 commit comments

Comments
 (0)