update docs for the next release

This commit is contained in:
nkzawa
2015-10-11 13:53:21 +09:00
parent 13cec3c4a5
commit 0bdb65dabe
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
0.6.2 / 2015-10-10
==================
* compatible with socket.io 1.3.7
* bump `engine.io-client`
* fix wrong reconnection state
0.6.1 / 2015-08-31 0.6.1 / 2015-08-31
================== ==================

View File

@@ -19,7 +19,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.1</version> <version>0.6.2</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -28,7 +28,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.1' compile 'io.socket:socket.io-client:0.6.2'
``` ```
## Usage ## Usage