Skip to content

Commit

Permalink
[dist] 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Apr 30, 2016
1 parent 783d1fe commit 3be0c73
Show file tree
Hide file tree
Showing 10 changed files with 188 additions and 97 deletions.
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.1.0
==

* Fix IE7/8 usage of `console.log` which does not have `apply` - #279
* Remove `dbg` global variable - #282
* Bump `faye-websocket` version to `0.11.0` - #267
* Optimize `arguments` usage - #263
* Add sourcemap file to dist folder - #237
* Add way to transparently pass transport-specific options - #272

1.0.3
==

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ First, you need to load the SockJS JavaScript library. For example, you can
put that in your HTML head:

```html
<script src="//cdn.jsdelivr.net/sockjs/1.0.3/sockjs.min.js"></script>
<script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script>
```

After the script is loaded you can establish a connection with the
Expand Down Expand Up @@ -258,7 +258,7 @@ You should use a version of sockjs-client
that supports the protocol used by your server. For example:

```html
<script src="//cdn.jsdelivr.net/sockjs/1.0.3/sockjs.min.js"></script>
<script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script>
```


Expand Down
3 changes: 0 additions & 3 deletions dist/sockjs-1.0.3.min.js

This file was deleted.

126 changes: 83 additions & 43 deletions dist/sockjs-1.0.3.js → dist/sockjs-1.1.0.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/sockjs-1.1.0.min.js

Large diffs are not rendered by default.

126 changes: 83 additions & 43 deletions dist/sockjs.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/sockjs.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/sockjs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '1.0.3';
module.exports = '1.1.0';
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sockjs-client",
"description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.",
"version": "1.0.3",
"version": "1.1.0",
"author": "Bryce Kahle",
"browser": {
"./lib/transport/driver/websocket.js": "./lib/transport/browser/websocket.js",
Expand Down Expand Up @@ -45,7 +45,7 @@
"mocha": "^1.21.5",
"node-static": "^0.7.6",
"proxyquire": "~1.0.1",
"sockjs": "^0.3.11",
"sockjs": "^0.3.17",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "^1.0.0",
"zuul": "git:/brycekahle/zuul#ngrok"
Expand Down

0 comments on commit 3be0c73

Please sign in to comment.