prepare release

This commit is contained in:
nkzawa
2017-07-14 14:54:54 +09:00
parent 05f6a2afd2
commit 3c0808b6f9
3 changed files with 16 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
1.0.0 / 2017-07-14
==================
* compatible with socket.io 2.0.x
* update engine.io-client
* custom encoder/decoder support
* fix socket id
0.9.0 / 2017-07-11 0.9.0 / 2017-07-11
================== ==================

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.9.0</version> <version>1.0.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@@ -30,12 +30,17 @@ 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.9.0') { compile ('io.socket:socket.io-client:1.0.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'
} }
``` ```
#### Socket.IO Server 1.x suppport
The current version of socket.io-client-java doesn't support socket.io server 1.x.
Please use socket.io-client-java 0.9.x for that instead.
## Usage ## Usage
Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`: Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:

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>1.0.0-SNAPSHOT</version> <version>1.0.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>