update README and History for the next release
This commit is contained in:
11
History.md
11
History.md
@@ -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
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|||||||
@@ -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'
|
||||||
}
|
}
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user