Skip to content

Commit 3c0808b

Browse files
committed
prepare release
1 parent 05f6a2a commit 3c0808b

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 socket.io 2.0.x
6+
* update engine.io-client
7+
* custom encoder/decoder support
8+
* fix socket id
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
@@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`.
2121
<dependency>
2222
<groupId>io.socket</groupId>
2323
<artifactId>socket.io-client</artifactId>
24-
<version>0.9.0</version>
24+
<version>1.0.0</version>
2525
</dependency>
2626
</dependencies>
2727
```
@@ -30,12 +30,17 @@ Add the following dependency to your `pom.xml`.
3030
Add it as a gradle dependency for Android Studio, in `build.gradle`:
3131

3232
```groovy
33-
compile ('io.socket:socket.io-client:0.9.0') {
33+
compile ('io.socket:socket.io-client:1.0.0') {
3434
// excluding org.json which is provided by Android
3535
exclude group: 'org.json', module: 'json'
3636
}
3737
```
3838

39+
#### Socket.IO Server 1.x suppport
40+
41+
The current version of socket.io-client-java doesn't support socket.io server 1.x.
42+
Please use socket.io-client-java 0.9.x for that instead.
43+
3944
## Usage
4045
Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:
4146

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>io.socket</groupId>
6464
<artifactId>engine.io-client</artifactId>
65-
<version>1.0.0-SNAPSHOT</version>
65+
<version>1.0.0</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.json</groupId>

0 commit comments

Comments
 (0)