chore(release): prepare release socket.io-client-2.0.1
This commit is contained in:
11
History.md
11
History.md
@@ -1,4 +1,15 @@
|
||||
|
||||
2.0.1 / 2021-04-27
|
||||
==================
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix usage with ws:// scheme ([67fd5f3](https://github.com/socketio/socket.io-client-java/commit/67fd5f34a31c63f7884f82ab39386ad343527590))
|
||||
* ensure buffered events are sent in order ([4885e7d](https://github.com/socketio/socket.io-client-java/commit/4885e7d59fad78285448694cb5681e8a9ce809ef))
|
||||
* ensure the payload format is valid ([e8ffe9d](https://github.com/socketio/socket.io-client-java/commit/e8ffe9d1383736f6a21090ab959a2f4fa5a41284))
|
||||
* emit a CONNECT_ERROR event upon connection failure ([d324e7f](https://github.com/socketio/socket.io-client-java/commit/d324e7f396a444ddd556c3d70a85a28eefb1e02b))
|
||||
|
||||
|
||||
2.0.0 / 2020-12-15
|
||||
==================
|
||||
|
||||
|
||||
4
pom.xml
4
pom.xml
@@ -2,7 +2,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>io.socket</groupId>
|
||||
<artifactId>socket.io-client</artifactId>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
<version>2.0.1</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>socket.io-client</name>
|
||||
<description>Socket.IO Client Library for Java</description>
|
||||
@@ -30,7 +30,7 @@
|
||||
<url>https://github.com/socketio/socket.io-client-java</url>
|
||||
<connection>scm:git:https://github.com/socketio/socket.io-client-java.git</connection>
|
||||
<developerConnection>scm:git:https://github.com/socketio/socket.io-client-java.git</developerConnection>
|
||||
<tag>HEAD</tag>
|
||||
<tag>socket.io-client-2.0.1</tag>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
|
||||
@@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
|
||||
<dependency>
|
||||
<groupId>io.socket</groupId>
|
||||
<artifactId>socket.io-client</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<version>2.0.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
@@ -26,7 +26,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:socket.io-client:2.0.0') {
|
||||
compile ('io.socket:socket.io-client:2.0.1') {
|
||||
// excluding org.json which is provided by Android
|
||||
exclude group: 'org.json', module: 'json'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user