prepare 0.8.2

This commit is contained in:
nkzawa
2016-10-22 11:30:19 +09:00
parent 78585e7b4a
commit e373455eb9
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
0.8.2 / 2016-10-22
==================
* fix IllegalStateException error of websocket [eckovation]
0.8.1 / 2016-09-27
==================

View File

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