Skip to content

Commit af2d9f2

Browse files
committed
Release 0.7.4
1 parent 40c1f8d commit af2d9f2

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

History.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
0.7.4 / 2011-06-30
3+
==================
4+
5+
* Fixed; only clear handlers if they were set. [level09]
6+
27
0.7.3 / 2011-06-30
38
==================
49

examples/chat/app.js

-4
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,7 @@ var io = sio.listen(app)
6262
, nicknames = {};
6363

6464
io.set('transports', [
65-
'websocket'
66-
, 'flashsocket'
67-
, 'htmlfile'
6865
, 'xhr-polling'
69-
, 'jsonp-polling'
7066
]);
7167

7268
io.sockets.on('connection', function (socket) {

lib/socket.io.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var client = require('socket.io-client');
1515
* Version.
1616
*/
1717

18-
exports.version = '0.7.3';
18+
exports.version = '0.7.4';
1919

2020
/**
2121
* Supported protocol version.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socket.io"
3-
, "version": "0.7.3"
3+
, "version": "0.7.4"
44
, "description": "Realtime apps made cross-browser & easy with a WebSocket-like API"
55
, "homepage": "http://socket.io"
66
, "keywords": ["websocket", "socket", "realtime", "socket.io", "comet", "ajax"]

0 commit comments

Comments
 (0)