Skip to content

Commit a1d1939

Browse files
committedApr 30, 2012
2012.04.30 Version 0.6.16 (stable)
* Upgrade V8 to 3.6.6.25 * Upgrade npm to 1.1.19 * Windows: add mappings for UV_ENOENT (Bert Belder) * linux: add IN_MOVE_SELF to inotify event mask (Ben Noordhuis) * unix: call pipe handle connection cb on accept() error (Ben Noordhuis) * unix: handle EWOULDBLOCK (Ben Noordhuis) * map EWOULDBLOCK to UV_EAGAIN (Ben Noordhuis) * Map ENOMEM to UV_ENOMEM (isaacs) * Child process: support the `gid` and `uid` options (Bert Belder) * test: cluster: add worker death event test (Ben Noordhuis) * typo in node_http_parser (isaacs) * http_parser: Eat CRLF between requests, even on connection:close. (Ben Noordhuis) * don't check return value of unsetenv (Ben Noordhuis)
1 parent e5ef103 commit a1d1939

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -272,3 +272,5 @@ tedsuo <ted@radicaldesigns.org>
272272
Joshua Holbrook <josh.holbrook@gmail.com>
273273
Rod Vagg <rod@vagg.org>
274274
Bryan Cantrill <bryan@joyent.com>
275+
lrn@chromium.org <lrn@chromium.org>
276+
Dane Springmeyer <dane@dbsgeo.com>

‎ChangeLog

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1-
2012.04.09 Version 0.6.15 (stable)
1+
2012.04.30 Version 0.6.16 (stable)
2+
3+
* Upgrade V8 to 3.6.6.25
4+
5+
* Upgrade npm to 1.1.19
6+
7+
* Windows: add mappings for UV_ENOENT (Bert Belder)
8+
9+
* linux: add IN_MOVE_SELF to inotify event mask (Ben Noordhuis)
10+
11+
* unix: call pipe handle connection cb on accept() error (Ben Noordhuis)
12+
13+
* unix: handle EWOULDBLOCK (Ben Noordhuis)
14+
15+
* map EWOULDBLOCK to UV_EAGAIN (Ben Noordhuis)
16+
17+
* Map ENOMEM to UV_ENOMEM (isaacs)
18+
19+
* Child process: support the `gid` and `uid` options (Bert Belder)
20+
21+
* test: cluster: add worker death event test (Ben Noordhuis)
22+
23+
* typo in node_http_parser (isaacs)
24+
25+
* http_parser: Eat CRLF between requests, even on connection:close. (Ben Noordhuis)
26+
27+
* don't check return value of unsetenv (Ben Noordhuis)
28+
29+
30+
2012.04.09 Version 0.6.15 (stable), f160a45b254e591eb33716311c92be533c6d86c4
231

332
* Update npm to 1.1.16
433

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 6
3131
#define NODE_PATCH_VERSION 16
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

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

0 commit comments

Comments
 (0)
Please sign in to comment.