Skip to content

Commit bfad012

Browse files
committed
prepare release
1 parent 0962904 commit bfad012

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

History.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

2+
1.0.0 / 2017-07-14
3+
==================
4+
5+
* compatible with engine.io 3.1.0
6+
* update parser: no strict UTF8 check
7+
* no UTF encodng for payloads which contains string only
8+
* add `transportOptions` option
9+
210
0.9.0 / 2017-07-11
311
==================
412

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add the following dependency to your `pom.xml`.
1616
<dependency>
1717
<groupId>io.socket</groupId>
1818
<artifactId>engine.io-client</artifactId>
19-
<version>0.9.0</version>
19+
<version>1.0.0</version>
2020
</dependency>
2121
</dependencies>
2222
```
@@ -25,12 +25,17 @@ Add the following dependency to your `pom.xml`.
2525
Add it as a gradle dependency for Android Studio, in `build.gradle`:
2626

2727
```groovy
28-
compile ('io.socket:engine.io-client:0.9.0') {
28+
compile ('io.socket:engine.io-client:1.0.0') {
2929
// excluding org.json which is provided by Android
3030
exclude group: 'org.json', module: 'json'
3131
}
3232
```
3333

34+
#### Engine.IO Server 1.x suppport
35+
36+
The current version of engine.io-client-java doesn't support engine.io server 1.x.
37+
Please use engine.io-client-java 0.9.x for that instead.
38+
3439
## Usage
3540
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
3641

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.socket</groupId>
44
<artifactId>engine.io-client</artifactId>
5-
<version>0.9.1-SNAPSHOT</version>
5+
<version>1.0.0-SNAPSHOT</version>
66
<packaging>jar</packaging>
77
<name>engine.io-client</name>
88
<description>Engine.IO Client Library for Java</description>

0 commit comments

Comments
 (0)