Skip to content

Commit 734e86b

Browse files
committed
bump version
1 parent 733ee42 commit 734e86b

File tree

4 files changed

+36
-13
lines changed

4 files changed

+36
-13
lines changed

ChangeLog

+32-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,41 @@
1-
2009.08.27, Version 0.1.7
1+
2009.09.04, Version 0.1.8
2+
3+
* Feature: External modules
4+
5+
* Feature: setTimeout() for node.tcp.Connection
6+
7+
* Feature: add node.cwd(), node.fs.readdir(), node.fs.mkdir()
8+
9+
* Bugfix: promise.wait() releasing out of order.
10+
11+
* Bugfix: Asyncly do getaddrinfo() on Apple.
12+
13+
* Disable useless evcom error messages.
14+
15+
* Better stack traces.
16+
17+
* Built natively on x64.
18+
19+
* Upgrade v8 to 1.3.9
20+
21+
2009.08.27, Version 0.1.7, f7acef9acf8ba8433d697ad5ed99d2e857387e4b
222

323
* Feature: global 'process' object. Emits "exit".
424

525
* Feature: promise.wait()
626

727
* Feature: node.stdio
828

9-
* Feature: EventEmitters emit "newListener" when listeners are added
29+
* Feature: EventEmitters emit "newListener" when listeners are
30+
added
1031

11-
* API: Use flat object instead of array-of-arrays for HTTP headers.
32+
* API: Use flat object instead of array-of-arrays for HTTP
33+
headers.
1234

1335
* API: Remove buffered file object (node.File)
1436

15-
* API: require(), include() are synchronous. (Uses continuations.)
37+
* API: require(), include() are synchronous. (Uses
38+
continuations.)
1639

1740
* API: Deprecate onLoad and onExit.
1841

@@ -113,7 +136,7 @@
113136

114137
* Move EventEmitter.prototype.emit() completely into C++.
115138

116-
* Bugfix: Fix memory leak in event emitters.
139+
* Bugfix: Fix memory leak in event emitters.
117140
http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
118141

119142
* Bugfix: Had problems reading scripts with non-ascii characters.
@@ -122,7 +145,7 @@
122145

123146
* Bugfix: Sockets not properly reattached if reconnected during
124147
disconnect event.
125-
148+
126149
* Bugfix: Server-side clients not attached between creation and
127150
on_connect.
128151

@@ -139,17 +162,17 @@
139162
* Update documentation, use asciidoc.
140163

141164
* EventEmitter and Promise interfaces. (Breaks previous API.)
142-
165+
143166
* Remove node.Process constructor in favor of node.createProcess
144167

145168
* Add -m32 flags for compiling on x64 platforms.
146169
(Thanks to András Bártházi)
147170

148171
* Upgrade v8 to 1.2.10 and libev to 3.6
149-
172+
150173
* Bugfix: Timer::RepeatSetter wasn't working.
151174

152-
* Bugfix: Spawning many processes in a loop
175+
* Bugfix: Spawning many processes in a loop
153176
(reported by Felix Geisendörfer)
154177

155178

website/api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NODE(1)
22
=======
33
Ryan Dahl <ry@tinyclouds.org>
4-
Version, 0.1.7, 2009.08.27
4+
Version, 0.1.8, 2009.09.04
55

66

77
== Name

website/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ <h2 id="download">Download</h2>
155155
<a href="http://github.com/ry/node/tree/master">git repo</a>
156156
</p>
157157
<p>
158-
2009.08.27
159-
<a href="http://s3.amazonaws.com/four.livejournal/20090827/node-0.1.7.tar.gz">node-0.1.7.tar.gz</a>
158+
2009.09.04
159+
<a href="http://s3.amazonaws.com/four.livejournal/20090904/node-0.1.8.tar.gz">node-0.1.8.tar.gz</a>
160160
</p>
161161

162162
<h2 id="build">Build</h2>

wscript

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

9-
VERSION="0.1.7"
9+
VERSION="0.1.8"
1010
APPNAME="node.js"
1111

1212
import js2c

0 commit comments

Comments
 (0)