Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 01994e8

Browse files
committed
2012.12.30, Version 0.9.5 (Unstable)
* assert: improve support for new execution contexts (lukebayes) * domain: use camelCase instead of snake_case (isaacs) * domain: Do not use uncaughtException handler (isaacs) * fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis) * https: optimize createConnection() (Ryunosuke SATO) * buffer: speed up base64 encoding by 20% (Ben Noordhuis) * doc: Colorize API stabilitity index headers in docs (Luke Arduini) * net: socket.readyState corrections (bentaber) * http: Performance enhancements for http under streams2 (isaacs) * stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu) * stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen) * build: Support ./configure --tag switch (Maciej Małecki) * repl: don't touch `require.cache` (Nathan Rajlich) * node: Emit 'exit' event when exiting for an uncaught exception (isaacs)
1 parent 6c80ef0 commit 01994e8

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,3 +393,6 @@ Tim Kuijsten <tim@netsend.nl>
393393
Michael Axiak <mike@axiak.net>
394394
Chad Rhyner <chadrhyner@gmail.com>
395395
Nicolas Chambrier <naholyr@gmail.com>
396+
Ben Taber <ben.taber@gmail.com>
397+
Luke Arduini <luke.arduini@me.com>
398+
Luke Bayes <lbayes@patternpark.com>

ChangeLog

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
1-
2012.12.21, Version 0.9.4 (Unstable)
1+
2012.12.30, Version 0.9.5 (Unstable)
2+
3+
* assert: improve support for new execution contexts (lukebayes)
4+
5+
* domain: use camelCase instead of snake_case (isaacs)
6+
7+
* domain: Do not use uncaughtException handler (isaacs)
8+
9+
* fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis)
10+
11+
* https: optimize createConnection() (Ryunosuke SATO)
12+
13+
* buffer: speed up base64 encoding by 20% (Ben Noordhuis)
14+
15+
* doc: Colorize API stabilitity index headers in docs (Luke Arduini)
16+
17+
* net: socket.readyState corrections (bentaber)
18+
19+
* http: Performance enhancements for http under streams2 (isaacs)
20+
21+
* stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu)
22+
23+
* stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen)
24+
25+
* build: Support ./configure --tag switch (Maciej Małecki)
26+
27+
* repl: don't touch `require.cache` (Nathan Rajlich)
28+
29+
* node: Emit 'exit' event when exiting for an uncaught exception (isaacs)
30+
31+
32+
2012.12.21, Version 0.9.4 (Unstable), d86d83c75f6343b5368bb7bd328b4466a035e1d4
233

334
* streams: Update all streaming interfaces to use new classes (isaacs)
435

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# define NODE_TAG ""
3131
#endif
3232

33-
#define NODE_VERSION_IS_RELEASE 0
33+
#define NODE_VERSION_IS_RELEASE 1
3434

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

0 commit comments

Comments
 (0)