chore(release): prepare release engine.io-client-2.0.0

This commit is contained in:
Damien Arrachequesne
2020-12-11 15:19:59 +01:00
parent cbd341c2c9
commit 62f13846d7
4 changed files with 21 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-j
| -------------- | ---------------- | ---------------- |
| 0.9.x | 1.x | 1.x |
| 1.x | 3.x | 2.x |
| WIP | 4.x | 3.x |
| 2.x | 4.x | 3.x |
## Installation
The latest artifact is available on Maven Central.
@@ -35,7 +35,7 @@ Add the following dependency to your `pom.xml`.
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId>
<version>1.0.1</version>
<version>2.0.0</version>
</dependency>
</dependencies>
```
@@ -44,7 +44,7 @@ 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.1') {
compile ('io.socket:engine.io-client:2.0.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}