Skip to content

Commit caa828a

Browse files
committed
bump version
1 parent bb4ae17 commit caa828a

File tree

5 files changed

+34
-15
lines changed

5 files changed

+34
-15
lines changed

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,6 @@ Herbert Vojčík <[email protected]>
6363
Krishna Rajendran <[email protected]>
6464
pyrotechnick <[email protected]>
6565
Carson McDonald <[email protected]>
66+
Julian Lamb <[email protected]>
67+
Brian Hammond <[email protected]>
68+
Mathias Pettersson <[email protected]>

ChangeLog

+26-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
1-
2010.04.15, Version 0.1.91
1+
2010.04.23, Version 0.1.92
2+
3+
* OpenSSL support. Still undocumented (see tests). (Rhys Jones)
4+
5+
* API: Unhandled 'error' events throw.
6+
7+
* Script class with eval-function-family in binding('evals') plus tests.
8+
(Herbert Vojcik)
9+
10+
* stream.setKeepAlive (Julian Lamb)
11+
12+
* Bugfix: Force no body on http 204 and 304
13+
14+
* Upgrade Waf to 1.5.16, V8 to 2.2.4.2
15+
16+
17+
2010.04.15, Version 0.1.91, 311d7dee19034ff1c6bc9098c36973b8d687eaba
218

319
* Add incoming.httpVersion
420

521
* Object.prototype problem with C-Ares binding
622

723
* REPL can be run from multiple different streams. (Matt Ranney)
824

9-
* After V8 heap is compact, don't use a timer every 2 seconds.
25+
* After V8 heap is compact, don't use a timer every 2 seconds.
1026

11-
* Improve nextTick implementation.
27+
* Improve nextTick implementation.
1228

1329
* Add primative support for Upgrading HTTP connections.
14-
(See commit log for docs 760bba5)
30+
(See commit log for docs 760bba5)
1531

1632
* Add timeout and maxBuffer options to child_process.exec
1733

@@ -320,7 +336,7 @@
320336

321337
* Bugfix: correctly check kqueue and epoll. (Rasmus Andersson)
322338

323-
* Upgrade WAF to 1.5.10
339+
* Upgrade WAF to 1.5.10
324340

325341
* Bugfix: posix.statSync() was crashing
326342

@@ -434,12 +450,12 @@
434450
- __module becomes module
435451

436452
* API: Many namespacing changes
437-
- Move node.* into process.*
453+
- Move node.* into process.*
438454
- Move node.dns into module "dns"
439455
- Move node.fs into module "posix"
440456
- process is no longer the global object. GLOBAL is.
441457

442-
For more information on the API changes see:
458+
For more information on the API changes see:
443459
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
444460
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
445461

@@ -501,7 +517,7 @@
501517

502518
* Feature: Multipart stream parser (Felix Geisendörfer)
503519

504-
* API: Move node.puts(), node.exec() and others to /utils.js
520+
* API: Move node.puts(), node.exec() and others to /utils.js
505521

506522
* API: Move http, tcp libraries to /http.js and /tcp.js
507523

@@ -524,7 +540,7 @@
524540
whole files at once.
525541

526542

527-
2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
543+
2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
528544

529545
* Feature: System modules, node.libraryPaths
530546

@@ -543,7 +559,7 @@
543559

544560
* API: default to utf8 encoding for node.fs.cat()
545561

546-
* API: add node.exec()
562+
* API: add node.exec()
547563

548564
* API: node.fs.read() takes a normal encoding parameter.
549565

doc/api_header.html

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ <h2 id="download">Download</h2>
9595
<a href="http://github.com/ry/node/tree/master">git repo</a>
9696
</p>
9797
<p>
98-
2010.04.15
99-
<a href="http://nodejs.org/dist/node-v0.1.91.tar.gz">node-v0.1.91.tar.gz</a>
98+
2010.04.23
99+
<a href="http://nodejs.org/dist/node-v0.1.92.tar.gz">node-v0.1.92.tar.gz</a>
100100
</p>
101101

102102
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
77
from logging import fatal
88

99
cwd = os.getcwd()
10-
VERSION="0.1.91"
10+
VERSION="0.1.92"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)