Skip to content

Commit c274d16

Browse files
committedMar 21, 2013
2013.03.21, Version 0.10.1 (Stable)
* npm: upgrade to 1.2.15 * crypto: Improve performance of non-stream APIs (Fedor Indutny) * tls: always reset this.ssl.error after handling (Fedor Indutny) * tls: Prevent mid-stream hangs (Fedor Indutny, isaacs) * net: improve arbitrary tcp socket support (Ben Noordhuis) * net: handle 'finish' event only after 'connect' (Fedor Indutny) * http: Don't hot-path end() for large buffers (isaacs) * fs: Missing cb errors are deprecated, not a throw (isaacs) * fs: make write/appendFileSync correctly set file mode (Raymond Feng) * stream: Return self from readable.wrap (isaacs) * stream: Never call decoder.end() multiple times (Gil Pedersen) * windows: enable watching signals with process.on('SIGXYZ') (Bert Belder) * node: revert removal of MakeCallback (Trevor Norris) * node: Unwrap without aborting in handle fd getter (isaacs)
1 parent 3dd7938 commit c274d16

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -428,3 +428,4 @@ Scott Blomquist <github@scott.blomqui.st>
428428
Henry Chin <hheennrryy@gmail.com>
429429
Julian Gruber <julian@juliangruber.com>
430430
JeongHoon Byun <outsideris@gmail.com>
431+
Iskren Ivov Chernev <iskren.chernev@gmail.com>

‎ChangeLog

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
1-
2013.03.11, Version 0.10.0 (Stable)
1+
2013.03.21, Version 0.10.1 (Stable)
2+
3+
* npm: upgrade to 1.2.15
4+
5+
* crypto: Improve performance of non-stream APIs (Fedor Indutny)
6+
7+
* tls: always reset this.ssl.error after handling (Fedor Indutny)
8+
9+
* tls: Prevent mid-stream hangs (Fedor Indutny, isaacs)
10+
11+
* net: improve arbitrary tcp socket support (Ben Noordhuis)
12+
13+
* net: handle 'finish' event only after 'connect' (Fedor Indutny)
14+
15+
* http: Don't hot-path end() for large buffers (isaacs)
16+
17+
* fs: Missing cb errors are deprecated, not a throw (isaacs)
18+
19+
* fs: make write/appendFileSync correctly set file mode (Raymond Feng)
20+
21+
* stream: Return self from readable.wrap (isaacs)
22+
23+
* stream: Never call decoder.end() multiple times (Gil Pedersen)
24+
25+
* windows: enable watching signals with process.on('SIGXYZ') (Bert Belder)
26+
27+
* node: revert removal of MakeCallback (Trevor Norris)
28+
29+
* node: Unwrap without aborting in handle fd getter (isaacs)
30+
31+
32+
2013.03.11, Version 0.10.0 (Stable), 163ca274230fce536afe76c64676c332693ad7c1
233

334
* npm: Upgrade to 1.2.14
435

‎src/node_version.h

+1-1
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)
Please sign in to comment.