Skip to content

Commit 5f2f840

Browse files
committed
2013.01.24, Version 0.9.8 (Unstable)
* npm: Upgrade to v1.2.3 * V8: Upgrade to 3.15.11.10 * streams: Support objects other than Buffers (Jake Verbaten) * buffer: remove float write range checks (Trevor Norris) * http: close connection on 304/204 responses with chunked encoding (Ben Noordhuis) * build: fix build with dtrace support on FreeBSD (Fedor Indutny) * console: Support formatting options in trace() (isaacs) * domain: empty stack on all exceptions (Dave Olszewski) * unix, windows: make uv_*_bind() error codes consistent (Andrius Bentkus) * linux: add futimes() fallback (Ben Noordhuis)
1 parent e722ca3 commit 5f2f840

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -405,3 +405,6 @@ James Hight <[email protected]>
405405
Mike Harsch <[email protected]>
406406
Alexandr Emelin <[email protected]>
407407
James Campos <[email protected]>
408+
Dave Olszewski <[email protected]>
409+
Tim Price <[email protected]>
410+
Jake Verbaten <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2013.01.18, Version 0.9.7 (Unstable)
1+
2013.01.24, Version 0.9.8 (Unstable)
2+
3+
* npm: Upgrade to v1.2.3
4+
5+
* V8: Upgrade to 3.15.11.10
6+
7+
* streams: Support objects other than Buffers (Jake Verbaten)
8+
9+
* buffer: remove float write range checks (Trevor Norris)
10+
11+
* http: close connection on 304/204 responses with chunked encoding (Ben Noordhuis)
12+
13+
* build: fix build with dtrace support on FreeBSD (Fedor Indutny)
14+
15+
* console: Support formatting options in trace() (isaacs)
16+
17+
* domain: empty stack on all exceptions (Dave Olszewski)
18+
19+
* unix, windows: make uv_*_bind() error codes consistent (Andrius Bentkus)
20+
21+
* linux: add futimes() fallback (Ben Noordhuis)
22+
23+
24+
2013.01.18, Version 0.9.7 (Unstable), 9e7bebeb8305edd55735a95955a98fdbe47572e5
225

326
* V8: Upgrade to 3.15.11.7
427

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)