We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f36d8c commit a4e53a6Copy full SHA for a4e53a6
3 files changed
History.md
@@ -1,4 +1,13 @@
1
2
+0.9.5 / 2012-04-05
3
+==================
4
+
5
+ * Added test for polling and socket close.
6
+ * Ensure close upon request close.
7
+ * Fix disconnection reason being lost for polling transports.
8
+ * Ensure that polling transports work with Connection: close.
9
+ * Log disconnection reason.
10
11
0.9.4 / 2012-04-01
12
==================
13
lib/socket.io.js
@@ -15,7 +15,7 @@ var client = require('socket.io-client');
15
* Version.
16
*/
17
18
-exports.version = '0.9.4';
+exports.version = '0.9.5';
19
20
/**
21
* Supported protocol version.
package.json
@@ -1,6 +1,6 @@
{
"name": "socket.io"
- , "version": "0.9.4"
+ , "version": "0.9.5"
, "description": "Real-time apps made cross-browser & easy with a WebSocket-like API"
, "homepage": "http://socket.io"
, "keywords": ["websocket", "socket", "realtime", "socket.io", "comet", "ajax"]
@@ -16,7 +16,7 @@
, "url": "https://github.com/LearnBoost/socket.io.git"
}
, "dependencies": {
- "socket.io-client": "0.9.4"
+ "socket.io-client": "0.9.5"
, "policyfile": "0.0.4"
, "redis": "0.6.7"
22
0 commit comments