update README and History for the next release

This commit is contained in:
nkzawa
2016-02-01 18:03:59 +09:00
parent ba723d0460
commit 641e34d3e5
3 changed files with 14 additions and 3 deletions

View File

@@ -1,3 +1,14 @@
0.7.0 / 2016-02-01
==================
* compatible with socket.io 1.4.5
* bump `engine.io-client`
* fix event type when emitting ack with binary data [cirocosta]
* don't reuse same namespace connections
* fix handling of disconnection while in `opening` state
* add ping and pong events
* improve cleanup on `Manager`
0.6.3 / 2015-12-23 0.6.3 / 2015-12-23
================== ==================

View File

@@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`.
<dependency> <dependency>
<groupId>io.socket</groupId> <groupId>io.socket</groupId>
<artifactId>socket.io-client</artifactId> <artifactId>socket.io-client</artifactId>
<version>0.6.3</version> <version>0.7.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -30,7 +30,7 @@ Add the following dependency to your `pom.xml`.
Add it as a gradle dependency for Android Studio, in `build.gradle`: Add it as a gradle dependency for Android Studio, in `build.gradle`:
```groovy ```groovy
compile ('io.socket:socket.io-client:0.6.3') { compile ('io.socket:socket.io-client:0.7.0') {
// excluding org.json which is provided by Android // excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json' exclude group: 'org.json', module: 'json'
} }

View File

@@ -62,7 +62,7 @@
<dependency> <dependency>
<groupId>io.socket</groupId> <groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId> <artifactId>engine.io-client</artifactId>
<version>0.7.0-SNAPSHOT</version> <version>0.7.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>