File tree 4 files changed +38
-2
lines changed
4 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
33
2009.06.30, Version 0.1.0
2
34
3
35
* Update documentation, use asciidoc.
Original file line number Diff line number Diff line change 1
1
NODE(1)
2
2
=======
3
3
Ryan Dahl <ry @tinyclouds.org >
4
- Version, 0.1.0 , 2009.06.30
4
+ Version, 0.1.1 , 2009.07.27
5
5
6
6
7
7
== NAME
Original file line number Diff line number Diff line change @@ -155,6 +155,10 @@ <h2 id="download">Download</h2>
155
155
< a href ="http://github.com/ry/node/tree/master "> git repo</ a >
156
156
</ p >
157
157
< 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 >
158
162
< li >
159
163
2009.06.30
160
164
< a href ="http://s3.amazonaws.com/four.livejournal/20090630/node-0.1.0.tar.gz "> node-0.1.0.tar.gz</ a >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ from logging import fatal
7
7
8
8
import js2c
9
9
10
- VERSION = '0.1.0 '
10
+ VERSION = '0.1.1 '
11
11
APPNAME = 'node'
12
12
13
13
srcdir = '.'
You can’t perform that action at this time.
0 commit comments