Skip to content

Commit b1b7002

Browse files
docs: add changelog for version 1.0.1
1 parent 475f89a commit b1b7002

File tree

2 files changed

+28
-8
lines changed

2 files changed

+28
-8
lines changed

History.md

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

2+
1.0.1 / 2020-12-10
3+
==================
4+
5+
### Bug Fixes
6+
7+
* handle responses without content type ([#101](https://github.com/socketio/engine.io-client-java/issues/101)) ([6f065b7](https://github.com/socketio/engine.io-client-java/commit/6f065b7a62603730979d43cec71af0046ca4ab7c))
8+
29
1.0.0 / 2017-07-14
310
==================
411

README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,26 @@ This is the Engine.IO Client Library for Java, which is simply ported from the [
66

77
See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-java)
88

9+
## Table of content
10+
11+
- [Compatibility](#compatibility)
12+
- [Installation](#installation)
13+
- [Maven](#maven)
14+
- [Gradle](#gradle)
15+
- [Usage](#usage)
16+
- [Features](#features)
17+
- [License](#license)
18+
19+
## Compatibility
20+
21+
| Client version | Engine.IO server | Socket.IO server |
22+
| -------------- | ---------------- | ---------------- |
23+
| 0.9.x | 1.x | 1.x |
24+
| 1.x | 3.x | 2.x |
25+
| - | 4.x | 3.x |
26+
927
## Installation
10-
The latest artifact is available on Maven Central. To install manually, please refer [dependencies](https://socketio.github.io/engine.io-client-java/dependencies.html).
28+
The latest artifact is available on Maven Central.
1129

1230
### Maven
1331
Add the following dependency to your `pom.xml`.
@@ -17,7 +35,7 @@ Add the following dependency to your `pom.xml`.
1735
<dependency>
1836
<groupId>io.socket</groupId>
1937
<artifactId>engine.io-client</artifactId>
20-
<version>1.0.0</version>
38+
<version>1.0.1</version>
2139
</dependency>
2240
</dependencies>
2341
```
@@ -26,17 +44,12 @@ Add the following dependency to your `pom.xml`.
2644
Add it as a gradle dependency for Android Studio, in `build.gradle`:
2745

2846
```groovy
29-
compile ('io.socket:engine.io-client:1.0.0') {
47+
compile ('io.socket:engine.io-client:1.0.1') {
3048
// excluding org.json which is provided by Android
3149
exclude group: 'org.json', module: 'json'
3250
}
3351
```
3452

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

0 commit comments

Comments
 (0)