Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jun 22, 2011
1 parent ea11342 commit 81a02aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
18 changes: 4 additions & 14 deletions History.md
@@ -1,21 +1,11 @@

0.7.0 / 2011-??-??
0.7.1 / 2011-06-21
==================

* Fixed JSONP interaction with jQuery. [saschagehlich]
* Fixed; different port now considered cross-domain.
* Added compatibility for inclusion in non-browser environments.
* Added package.json.
* Added noConflict support. [kreichgauer]
* Added reconnection support with exponential backoff. [3rd-Eden]
* Bumped socket.io dependency version for acceptance tests.

0.6.2 / 2011-02-05
0.7.0 / 2011-06-21
==================

* Fixed problem with xhr-multipart buffering
* Updated Flash websocket transport
* Fixed tryTransportsOnConnectTimeout option
* Added 'connect_failed' event after the last available transport fails to connect
within the timeout
* Add 'connecting' event emit on each connection attempt.
* http://socket.io/announcement.html

2 changes: 1 addition & 1 deletion lib/io.js
Expand Up @@ -21,7 +21,7 @@
* @api public
*/

io.version = '0.7.0';
io.version = '0.7.1';

/**
* Protocol implemented.
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "socket.io-client"
, "description": "Socket.IO client for the browser and node.js"
, "version": "0.7.0"
, "version": "0.7.1"
, "main" : "./lib/io.js"
, "browserify": "./dist/socket.io.js"
, "homepage": "http://socket.io"
Expand All @@ -22,8 +22,8 @@
, "express": "2.3.11"
, "jade": "0.12.1"
, "stylus": "0.13.3"
, "socket.io": "0.7.0"
, "socket.io-client": "0.7.0"
, "socket.io": "0.7.1"
, "socket.io-client": "0.7.1"
}
, "engines": { "node": ">= 0.4.0" }
}
2 changes: 1 addition & 1 deletion support/test-runner/app.js
Expand Up @@ -116,7 +116,7 @@ function server (name, fn) {

var io = sio.listen(port);
io.configure(function () {
io.set('transports', ['jsonp-polling']);
io.set('transports', ['xhr-polling']);
});

fn(io);
Expand Down

0 comments on commit 81a02aa

Please sign in to comment.