prepare release
This commit is contained in:
@@ -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
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|||||||
@@ -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`:
|
||||||
|
|
||||||
|
|||||||
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>1.0.0-SNAPSHOT</version>
|
<version>1.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
|
|||||||
Reference in New Issue
Block a user