Skip to content

Commit bce38b3

Browse files
committedMar 28, 2013
2013.03.28, Version 0.11.0 (Unstable)
* V8: update to 3.17.13 * os: use %SystemRoot% or %windir% in os.tmpdir() (Suwon Chae) * util: fix util.inspect() line width calculation (Marcin Kostrzewa) * buffer: remove _charsWritten (Trevor Norris) * fs: uv_[fl]stat now reports subsecond resolution (Timothy J Fontaine) * fs: Throw if error raised and missing callback (bnoordhuis) * tls: expose SSL_CTX_set_timeout via tls.createServer (Manav Rathi) * tls: remove harmful unnecessary bounds checking (Marcel Laverdet) * buffer: write ascii strings using WriteOneByte (Trevor Norris) * dtrace: fix generation of v8 constants on freebsd (Fedor Indutny) * dtrace: x64 ustack helper (Fedor Indutny) * readline: handle wide characters properly (Nao Iizuka) * repl: Use a domain to catch async errors safely (isaacs) * repl: emit 'reset' event when context is reset (Sami Samhuri) * util: custom `inspect()` method may return an Object (Nathan Rajlich) * console: `console.dir()` bypasses inspect() methods (Nathan Rajlich)
1 parent 9100dd4 commit bce38b3

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed
 

‎AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -431,3 +431,6 @@ JeongHoon Byun <outsideris@gmail.com>
431431
Iskren Ivov Chernev <iskren.chernev@gmail.com>
432432
Alexey Kupershtokh <alexey.kupershtokh@gmail.com>
433433
Benjamin Ruston <benjy.ruston@gmail.com>
434+
Manav Rathi <manav.r@directi.com>
435+
Marcin Kostrzewa <marcinkostrzewa@yahoo.com>
436+
Suwon Chae <doortts@gmail.com>

‎ChangeLog

+36-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
1-
2013.03.28, Version 0.10.2 (Stable)
1+
2013.03.28, Version 0.11.0 (Unstable)
2+
3+
* V8: update to 3.17.13
4+
5+
* os: use %SystemRoot% or %windir% in os.tmpdir() (Suwon Chae)
6+
7+
* util: fix util.inspect() line width calculation (Marcin Kostrzewa)
8+
9+
* buffer: remove _charsWritten (Trevor Norris)
10+
11+
* fs: uv_[fl]stat now reports subsecond resolution (Timothy J Fontaine)
12+
13+
* fs: Throw if error raised and missing callback (bnoordhuis)
14+
15+
* tls: expose SSL_CTX_set_timeout via tls.createServer (Manav Rathi)
16+
17+
* tls: remove harmful unnecessary bounds checking (Marcel Laverdet)
18+
19+
* buffer: write ascii strings using WriteOneByte (Trevor Norris)
20+
21+
* dtrace: fix generation of v8 constants on freebsd (Fedor Indutny)
22+
23+
* dtrace: x64 ustack helper (Fedor Indutny)
24+
25+
* readline: handle wide characters properly (Nao Iizuka)
26+
27+
* repl: Use a domain to catch async errors safely (isaacs)
28+
29+
* repl: emit 'reset' event when context is reset (Sami Samhuri)
30+
31+
* util: custom `inspect()` method may return an Object (Nathan Rajlich)
32+
33+
* console: `console.dir()` bypasses inspect() methods (Nathan Rajlich)
34+
35+
36+
2013.03.28, Version 0.10.2 (Stable), 1e0de9c426e07a260bbec2d2196c2d2db8eb8886
237

338
* npm: Upgrade to 1.2.15
439

‎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.