From b1b7002691caf9bdeb3f1de461de26998479802c Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Thu, 10 Dec 2020 14:26:00 +0100 Subject: [PATCH] docs: add changelog for version 1.0.1 --- History.md | 7 +++++++ README.md | 29 +++++++++++++++++++++-------- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/History.md b/History.md index 1d18708..f208819 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,11 @@ +1.0.1 / 2020-12-10 +================== + +### Bug Fixes + +* 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)) + 1.0.0 / 2017-07-14 ================== diff --git a/README.md b/README.md index 587c387..39dd81e 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,26 @@ This is the Engine.IO Client Library for Java, which is simply ported from the [ See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-java) +## Table of content + +- [Compatibility](#compatibility) +- [Installation](#installation) + - [Maven](#maven) + - [Gradle](#gradle) +- [Usage](#usage) +- [Features](#features) +- [License](#license) + +## Compatibility + +| Client version | Engine.IO server | Socket.IO server | +| -------------- | ---------------- | ---------------- | +| 0.9.x | 1.x | 1.x | +| 1.x | 3.x | 2.x | +| - | 4.x | 3.x | + ## Installation -The latest artifact is available on Maven Central. To install manually, please refer [dependencies](https://socketio.github.io/engine.io-client-java/dependencies.html). +The latest artifact is available on Maven Central. ### Maven Add the following dependency to your `pom.xml`. @@ -17,7 +35,7 @@ Add the following dependency to your `pom.xml`. io.socket engine.io-client - 1.0.0 + 1.0.1 ``` @@ -26,17 +44,12 @@ Add the following dependency to your `pom.xml`. Add it as a gradle dependency for Android Studio, in `build.gradle`: ```groovy -compile ('io.socket:engine.io-client:1.0.0') { +compile ('io.socket:engine.io-client:1.0.1') { // excluding org.json which is provided by Android 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 Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect: