Skip to content

Commit 2469933

Browse files
chore(release): prepare release engine.io-client-2.1.0
1 parent fb531fa commit 2469933

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

History.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11

2+
2.1.0 / 2022-07-10
3+
==================
4+
5+
### Features
6+
7+
* create heartbeat scheduler with named threads and as daemon ([#106](https://github.com/socketio/engine.io-client-java/issues/106)) ([7c9c382](https://github.com/socketio/engine.io-client-java/commit/7c9c382505f7411544add5a68fa326df3b82d2c1))
8+
9+
### Bug Fixes
10+
11+
* increase the readTimeout value of the default OkHttpClient ([fb531fa](https://github.com/socketio/engine.io-client-java/commit/fb531fab30968a4b65a402c81f37e92dd5671f33))
12+
13+
14+
215
2.0.0 / 2020-12-11
316
==================
417

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Add the following dependency to your `pom.xml`.
3535
<dependency>
3636
<groupId>io.socket</groupId>
3737
<artifactId>engine.io-client</artifactId>
38-
<version>2.0.0</version>
38+
<version>2.1.0</version>
3939
</dependency>
4040
</dependencies>
4141
```
@@ -44,7 +44,7 @@ Add the following dependency to your `pom.xml`.
4444
Add it as a gradle dependency for Android Studio, in `build.gradle`:
4545

4646
```groovy
47-
compile ('io.socket:engine.io-client:2.0.0') {
47+
compile ('io.socket:engine.io-client:2.1.0') {
4848
// excluding org.json which is provided by Android
4949
exclude group: 'org.json', module: 'json'
5050
}

pom.xml

+2-2
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>engine.io-client</artifactId>
5-
<version>2.0.1-SNAPSHOT</version>
5+
<version>2.1.0</version>
66
<packaging>jar</packaging>
77
<name>engine.io-client</name>
88
<description>Engine.IO Client Library for Java</description>
@@ -30,7 +30,7 @@
3030
<url>https://github.com/socketio/engine.io-client-java</url>
3131
<connection>scm:git:https://github.com/socketio/engine.io-client-java.git</connection>
3232
<developerConnection>scm:git:https://github.com/socketio/engine.io-client-java.git</developerConnection>
33-
<tag>HEAD</tag>
33+
<tag>engine.io-client-2.1.0</tag>
3434
</scm>
3535

3636
<developers>

src/site/markdown/installation.md

+2-2
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>engine.io-client</artifactId>
20-
<version>2.0.0</version>
20+
<version>2.1.0</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:engine.io-client:2.0.0') {
29+
compile ('io.socket:engine.io-client:2.1.0') {
3030
// excluding org.json which is provided by Android
3131
exclude group: 'org.json', module: 'json'
3232
}

0 commit comments

Comments
 (0)