Skip to content

Commit b46da92

Browse files
chore(release): prepare release socket.io-client-2.0.1
1 parent d324e7f commit b46da92

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

History.md

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

2+
2.0.1 / 2021-04-27
3+
==================
4+
5+
### Bug Fixes
6+
7+
* fix usage with ws:// scheme ([67fd5f3](https://github.com/socketio/socket.io-client-java/commit/67fd5f34a31c63f7884f82ab39386ad343527590))
8+
* ensure buffered events are sent in order ([4885e7d](https://github.com/socketio/socket.io-client-java/commit/4885e7d59fad78285448694cb5681e8a9ce809ef))
9+
* ensure the payload format is valid ([e8ffe9d](https://github.com/socketio/socket.io-client-java/commit/e8ffe9d1383736f6a21090ab959a2f4fa5a41284))
10+
* emit a CONNECT_ERROR event upon connection failure ([d324e7f](https://github.com/socketio/socket.io-client-java/commit/d324e7f396a444ddd556c3d70a85a28eefb1e02b))
11+
12+
213
2.0.0 / 2020-12-15
314
==================
415

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>2.0.1-SNAPSHOT</version>
5+
<version>2.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-2.0.1</tag>
3434
</scm>
3535

3636
<developers>

src/site/markdown/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
1717
<dependency>
1818
<groupId>io.socket</groupId>
1919
<artifactId>socket.io-client</artifactId>
20-
<version>2.0.0</version>
20+
<version>2.0.1</version>
2121
</dependency>
2222
</dependencies>
2323
```
@@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`.
2626
Add it as a gradle dependency for Android Studio, in `build.gradle`:
2727

2828
```groovy
29-
compile ('io.socket:socket.io-client:2.0.0') {
29+
compile ('io.socket:socket.io-client:2.0.1') {
3030
// excluding org.json which is provided by Android
3131
exclude group: 'org.json', module: 'json'
3232
}

0 commit comments

Comments
 (0)