Skip to content

Commit 77d407d

Browse files
committed
bump version
1 parent d41197e commit 77d407d

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

ChangeLog

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
2009.07.27, Version 0.1.1
2+
3+
* Simplify and clean up ObjectWrap.
4+
5+
* Upgrade liboi (which is now called evcom)
6+
Upgrade libev to 3.7
7+
Upgrade V8 to 1.2.14
8+
9+
* Array.prototype.encodeUtf8 renamed to node.encodeUtf8(array)
10+
11+
* Move EventEmitter.prototype.emit() completely into C++.
12+
13+
* Bugfix: Fix memory leak in event emitters.
14+
http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
15+
16+
* Bugfix: Had problems reading scripts with non-ascii characters.
17+
18+
* Bugfix: Fix Detach() in node::Server
19+
20+
* Bugfix: Sockets not properly reattached if reconnected during disconnect
21+
event.
22+
23+
* Bugfix: Server-side clients not attached between creation and
24+
on_connect.
25+
26+
* Add 'close' event to node.tcp.Server
27+
28+
* Simplify and clean up http.js. (Takes more advantage of event
29+
infrastructure).
30+
31+
* Add benchmark scripts. Run with "make benchmark".
32+
133
2009.06.30, Version 0.1.0
234

335
* Update documentation, use asciidoc.

website/api.txt

Lines changed: 1 addition & 1 deletion
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.0, 2009.06.30
4+
Version, 0.1.1, 2009.07.27
55

66

77
== NAME

website/index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ <h2 id="download">Download</h2>
155155
<a href="http://github.com/ry/node/tree/master">git repo</a>
156156
</p>
157157
<ul>
158+
<li>
159+
2009.07.27
160+
<a href="http://s3.amazonaws.com/four.livejournal/20090727/node-0.1.1.tar.gz">node-0.1.1.tar.gz</a>
161+
</li>
158162
<li>
159163
2009.06.30
160164
<a href="http://s3.amazonaws.com/four.livejournal/20090630/node-0.1.0.tar.gz">node-0.1.0.tar.gz</a>

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from logging import fatal
77

88
import js2c
99

10-
VERSION='0.1.0'
10+
VERSION='0.1.1'
1111
APPNAME='node'
1212

1313
srcdir = '.'

0 commit comments

Comments
 (0)