update History and Readme

This commit is contained in:
nkzawa
2016-09-28 00:33:39 +09:00
parent e2e51a730f
commit a42ec862b6
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
0.8.1 / 2016-09-27
==================
* bump `engine.io-client`
0.8.0 / 2016-09-23 0.8.0 / 2016-09-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.8.0</version> <version>0.8.1</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.8.0') { compile ('io.socket:socket.io-client:0.8.1') {
// 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'
} }