Skip to content

Commit

Permalink
Release 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jun 6, 2013
1 parent db63d17 commit 98c1bc8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

0.9.16 / 2013-06-06
===================

* transports: fix escaping for tests

0.9.15 / 2013-06-06
===================

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

var io = ('undefined' === typeof module ? {} : module.exports);
(function() {
Expand All @@ -25,7 +25,7 @@ var io = ('undefined' === typeof module ? {} : module.exports);
* @api public
*/

io.version = '0.9.15';
io.version = '0.9.16';

/**
* Protocol implemented.
Expand Down Expand Up @@ -3348,7 +3348,7 @@ var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="Sho

HTMLFile.prototype._ = function (data, doc) {
// unescape all forward slashes. see GH-1251
data = data.replace(/\/\//g, '/');
data = data.replace(/\\\//g, '/');
this.onData(data);
try {
var script = doc.getElementsByTagName('script')[0];
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.9.15';
io.version = '0.9.16';

/**
* Protocol implemented.
Expand Down
6 changes: 3 additions & 3 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.9.15"
, "version": "0.9.16"
, "main" : "./lib/io.js"
, "browserify": "./dist/socket.io.js"
, "homepage": "http://socket.io"
Expand All @@ -28,8 +28,8 @@
, "express": "2.5.x"
, "jade": "*"
, "stylus": "*"
, "socket.io": "0.9.15"
, "socket.io-client": "0.9.15"
, "socket.io": "0.9.16"
, "socket.io-client": "0.9.16"
, "should": "*"
}
, "engines": { "node": ">= 0.4.0" }
Expand Down

0 comments on commit 98c1bc8

Please sign in to comment.