Skip to content

Commit 89ef9d0

Browse files
chore(release): prepare release socket.io-client-1.0.1
1 parent 9df7b75 commit 89ef9d0

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

History.md

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

2+
1.0.1 / 2020-12-10
3+
==================
4+
5+
### Bug Fixes
6+
7+
* don't process socket.connect() if we are already re-connecting ([#577](https://github.com/socketio/socket.io-client-java/issues/577)) ([54b7311](https://github.com/socketio/socket.io-client-java/commit/54b73114d19f33a78bec1ce99325893129f8a148))
8+
* handle case where URI.getHost() returns null ([#484](https://github.com/socketio/socket.io-client-java/issues/484)) ([567372e](https://github.com/socketio/socket.io-client-java/commit/567372ecfa6c86bdc72f8bc64985d6511dc87666))
9+
10+
211
1.0.0 / 2017-07-14
312
==================
413

README.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,26 @@ See also:
1111
- [Android chat demo](https://github.com/nkzawa/socket.io-android-chat)
1212
- [engine.io-client-java](https://github.com/socketio/engine.io-client-java)
1313

14+
## Table of content
15+
16+
- [Compatibility](#compatibility)
17+
- [Installation](#installation)
18+
- [Maven](#maven)
19+
- [Gradle](#gradle)
20+
- [Usage](#usage)
21+
- [Features](#features)
22+
- [License](#license)
23+
24+
## Compatibility
25+
26+
| Client version | Socket.IO server |
27+
| -------------- | ---------------- |
28+
| 0.9.x | 1.x |
29+
| 1.x | 2.x |
30+
| WIP | 3.x |
31+
1432
## Installation
15-
The latest artifact is available on Maven Central. You'll also need [dependencies](http://socketio.github.io/socket.io-client-java/dependencies.html) to install.
33+
The latest artifact is available on Maven Central.
1634

1735
### Maven
1836
Add the following dependency to your `pom.xml`.
@@ -22,7 +40,7 @@ Add the following dependency to your `pom.xml`.
2240
<dependency>
2341
<groupId>io.socket</groupId>
2442
<artifactId>socket.io-client</artifactId>
25-
<version>1.0.0</version>
43+
<version>1.0.1/version>
2644
</dependency>
2745
</dependencies>
2846
```
@@ -31,22 +49,12 @@ Add the following dependency to your `pom.xml`.
3149
Add it as a gradle dependency for Android Studio, in `build.gradle`:
3250

3351
```groovy
34-
compile ('io.socket:socket.io-client:1.0.0') {
52+
compile ('io.socket:socket.io-client:1.0.1') {
3553
// excluding org.json which is provided by Android
3654
exclude group: 'org.json', module: 'json'
3755
}
3856
```
3957

40-
#### Socket.IO Server 1.x suppport
41-
42-
The current version of socket.io-client-java doesn't support socket.io server 1.x.
43-
Please use socket.io-client-java 0.9.x for that instead.
44-
45-
#### Socket.IO Server 3.x not suppported
46-
47-
The current version of socket.io-client-java doesn't support socket.io server 3.x.
48-
Please use the lastest version of socket.io 2.x: [socket.io 2.3.0](https://www.npmjs.com/package/socket.io/v/2.3.0)
49-
5058
## Usage
5159
Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:
5260

pom.xml

Lines changed: 2 additions & 2 deletions
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>socket.io-client</artifactId>
5-
<version>1.0.1-SNAPSHOT</version>
5+
<version>1.0.1</version>
66
<packaging>jar</packaging>
77
<name>socket.io-client</name>
88
<description>Socket.IO Client Library for Java</description>
@@ -30,7 +30,7 @@
3030
<url>https://github.com/socketio/socket.io-client-java</url>
3131
<connection>scm:git:https://github.com/socketio/socket.io-client-java.git</connection>
3232
<developerConnection>scm:git:https://github.com/socketio/socket.io-client-java.git</developerConnection>
33-
<tag>HEAD</tag>
33+
<tag>socket.io-client-1.0.1</tag>
3434
</scm>
3535

3636
<developers>

0 commit comments

Comments
 (0)