Skip to content

Commit

Permalink
Release 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jun 30, 2011
1 parent 5efc281 commit 56ddb4e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

0.7.3 / 2011-06-30
==================

* Fixed; acks don't depend on arity. They're automatic for `.send` and
callback based for `.emit`. [dvv]
* Added support for sub-sockets authorization. [3rd-Eden]
* Added BC support for `new io.connect`. [fat]
* Fixed double `connect` events. [3rd-Eden]
* Fixed reconnection with jsonp-polling maintaining old sessionid. [franck34]

0.7.2 / 2011-06-22
==================

Expand Down
4 changes: 2 additions & 2 deletions dist/socket.io.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Socket.IO.js build:0.7.2, development. Copyright(c) 2011 LearnBoost <dev@learnboost.com> MIT Licensed */
/*! Socket.IO.js build:0.7.3, development. Copyright(c) 2011 LearnBoost <dev@learnboost.com> MIT Licensed */

/**
* socket.io
Expand All @@ -22,7 +22,7 @@
* @api public
*/

io.version = '0.7.2';
io.version = '0.7.3';

/**
* Protocol implemented.
Expand Down
4 changes: 2 additions & 2 deletions dist/socket.io.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/io.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @api public
*/

io.version = '0.7.2';
io.version = '0.7.3';

/**
* Protocol implemented.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "socket.io-client"
, "description": "Socket.IO client for the browser and node.js"
, "version": "0.7.2"
, "version": "0.7.3"
, "main" : "./lib/io.js"
, "browserify": "./dist/socket.io.js"
, "homepage": "http://socket.io"
Expand All @@ -22,7 +22,7 @@
, "express": "2.3.11"
, "jade": "0.12.1"
, "stylus": "0.13.3"
, "socket.io": "0.7.1"
, "socket.io": "0.7.3"
, "socket.io-client": "0.7.1"
}
, "engines": { "node": ">= 0.4.0" }
Expand Down

0 comments on commit 56ddb4e

Please sign in to comment.