prepare release
This commit is contained in:
@@ -1,4 +1,12 @@
|
|||||||
|
|
||||||
|
1.0.0 / 2017-07-14
|
||||||
|
==================
|
||||||
|
|
||||||
|
* compatible with engine.io 3.1.0
|
||||||
|
* update parser: no strict UTF8 check
|
||||||
|
* no UTF encodng for payloads which contains string only
|
||||||
|
* add `transportOptions` option
|
||||||
|
|
||||||
0.9.0 / 2017-07-11
|
0.9.0 / 2017-07-11
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Add the following dependency to your `pom.xml`.
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.socket</groupId>
|
<groupId>io.socket</groupId>
|
||||||
<artifactId>engine.io-client</artifactId>
|
<artifactId>engine.io-client</artifactId>
|
||||||
<version>0.9.0</version>
|
<version>1.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
```
|
```
|
||||||
@@ -25,12 +25,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:engine.io-client:0.9.0') {
|
compile ('io.socket:engine.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'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Engine.IO Server 1.x suppport
|
||||||
|
|
||||||
|
The current version of engine.io-client-java doesn't support engine.io server 1.x.
|
||||||
|
Please use engine.io-client-java 0.9.x for that instead.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
|
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
|
||||||
|
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>io.socket</groupId>
|
<groupId>io.socket</groupId>
|
||||||
<artifactId>engine.io-client</artifactId>
|
<artifactId>engine.io-client</artifactId>
|
||||||
<version>0.9.1-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>engine.io-client</name>
|
<name>engine.io-client</name>
|
||||||
<description>Engine.IO Client Library for Java</description>
|
<description>Engine.IO Client Library for Java</description>
|
||||||
|
|||||||
Reference in New Issue
Block a user