This repository was archived by the owner on Apr 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +41
-10
lines changed Expand file tree Collapse file tree 6 files changed +41
-10
lines changed Original file line number Diff line number Diff line change @@ -189,3 +189,11 @@ Kip Gebhardt <kip.gebhardt@voxer.com>
189
189
Stefan Rusu <saltwaterc@gmail.com>
190
190
Wojciech Wnętrzak <w.wnetrzak@gmail.com>
191
191
Reid Burke <me@reidburke.com>
192
+ Niklas Fiekas <niklas.fiekas@googlemail.com>
193
+ Adam Luikart <me@adamluikart.com>
194
+ avz <a.arepo@gmail.com>
195
+ Jeremy Selier <jeremy@jolicloud.com>
196
+ Igor Zinkovsky <igorzi@microsoft.com>
197
+ Shigeki Ohtsu <ohtsu@d.jp>
198
+ vegorov@chromium.org <vegorov@chromium.org>
199
+ Pierre-Alexandre St-Jean <pierrealexandre.stjean@gmail.com>
Original file line number Diff line number Diff line change 1
- 2011.07.14, Version 0.5.1 (unstable)
1
+ 2011.07.22, Version 0.5.2 (unstable)
2
+
3
+ * libuv improvements; named pipe support
4
+
5
+ * #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis)
6
+
7
+ * #1348 remove require.paths (isaacs)
8
+
9
+ * #1349 Delimit NODE_PATH with ; on Windows (isaacs)
10
+
11
+ * #1335 Remove EventEmitter from C++
12
+
13
+ * #1357 Load json files with require() (isaacs)
14
+
15
+ * #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
16
+
17
+ * Fixed: GC was being run too often.
18
+
19
+ * Upgrade V8 to 3.4.14
20
+
21
+ * doc improvements
22
+
23
+
24
+ 2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8
2
25
3
26
* #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
4
27
Original file line number Diff line number Diff line change 27
27
< li > < a href ="https://github.com/joyent/node/wiki/ChangeLog "> ChangeLog</ a > </ li >
28
28
< li > < a href ="#about "> About</ a > </ li >
29
29
< li > < a href ="http://nodejs.org/docs/v0.4.10/api "> v0.4.10 docs</ a > </ li >
30
- < li > < a href ="http://nodejs.org/docs/v0.5.1 /api "> v0.5.1 docs</ a > </ li >
30
+ < li > < a href ="http://nodejs.org/docs/v0.5.2 /api "> v0.5.2 docs</ a > </ li >
31
31
< br />
32
32
< li > < a href ="https://github.com/joyent/node/wiki "> Wiki</ a > </ li >
33
33
< li > < a href ="http://blog.nodejs.org/ "> Blog</ a > </ li >
@@ -116,11 +116,11 @@ <h2 id="download">Download</h2>
116
116
< li > < a href ="http://nodejs.org/docs/v0.4.10/api/index.html "> Documentation</ a >
117
117
</ ul >
118
118
119
- < p > 2011.07.14 v0.5.1 (unstable)
119
+ < p > 2011.07.22 v0.5.2 (unstable)
120
120
< ul class ="release ">
121
- < li > < a href ="http://nodejs.org/dist/v0.5.1 /node-v0.5.1 .tar.gz "> < code > node-v0.5.1 .tar.gz</ code > Source code</ a >
122
- < li > < a href ="http://nodejs.org/dist/v0.5.1 /node.exe "> < code > node.exe</ code > Windows executable</ a >
123
- < li > < a href ="http://nodejs.org/docs/v0.5.1 /api/index.html "> Documentation</ a >
121
+ < li > < a href ="http://nodejs.org/dist/v0.5.2 /node-v0.5.2 .tar.gz "> < code > node-v0.5.2 .tar.gz</ code > Source code</ a >
122
+ < li > < a href ="http://nodejs.org/dist/v0.5.2 /node.exe "> < code > node.exe</ code > Windows executable</ a >
123
+ < li > < a href ="http://nodejs.org/docs/v0.5.2 /api/index.html "> Documentation</ a >
124
124
</ ul >
125
125
126
126
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
< html >
3
3
< head >
4
- < title > {{section}}Node.js v0.5.1 Manual & Documentation</ title >
4
+ < title > {{section}}Node.js v0.5.2 Manual & Documentation</ title >
5
5
< link type ="image/x-icon " rel ="icon " href ="/favicon.ico " />
6
6
< link type ="image/x-icon " rel ="shortcut icon " href ="/favicon.ico " />
7
7
< link rel ="stylesheet " href ="assets/style.css " type ="text/css " media ="all " />
10
10
< body >
11
11
< div id ="container ">
12
12
< header >
13
- < h1 > Node.js v0.5.1 Manual & Documentation</ h1 >
13
+ < h1 > Node.js v0.5.2 Manual & Documentation</ h1 >
14
14
< div id ="gtoc ">
15
15
< p > < a href ="index.html "> Index</ a > | < a href ="all.html "> View on single page</ a > </ p >
16
16
</ div >
Original file line number Diff line number Diff line change 28
28
#define NODE_MAJOR_VERSION 0
29
29
#define NODE_MINOR_VERSION 5
30
30
#define NODE_PATCH_VERSION 2
31
- #define NODE_VERSION_IS_RELEASE 0
31
+ #define NODE_VERSION_IS_RELEASE 1
32
32
33
33
#ifndef NODE_STRINGIFY
34
34
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -897,7 +897,7 @@ def build(bld):
897
897
, 'CPPFLAGS' : " " .join (program .env ["CPPFLAGS" ]).replace ('"' , '\\ "' )
898
898
, 'LIBFLAGS' : " " .join (program .env ["LIBFLAGS" ]).replace ('"' , '\\ "' )
899
899
, 'PREFIX' : safe_path (program .env ["PREFIX" ])
900
- , 'VERSION' : '0.5.1 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
900
+ , 'VERSION' : '0.5.2 ' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
901
901
}
902
902
return x
903
903
You can’t perform that action at this time.
0 commit comments