Skip to content

Commit

Permalink
chore(release): prepare release engine.io-client-2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Jul 10, 2022
1 parent fb531fa commit 2469933
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

2.1.0 / 2022-07-10
==================

### Features

* 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))

### Bug Fixes

* increase the readTimeout value of the default OkHttpClient ([fb531fa](https://github.com/socketio/engine.io-client-java/commit/fb531fab30968a4b65a402c81f37e92dd5671f33))



2.0.0 / 2020-12-11
==================

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Add the following dependency to your `pom.xml`.
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>
```
Expand All @@ -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:2.0.0') {
compile ('io.socket:engine.io-client:2.1.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>2.1.0</version>
<packaging>jar</packaging>
<name>engine.io-client</name>
<description>Engine.IO Client Library for Java</description>
Expand Down Expand Up @@ -30,7 +30,7 @@
<url>https://github.com/socketio/engine.io-client-java</url>
<connection>scm:git:https://github.com/socketio/engine.io-client-java.git</connection>
<developerConnection>scm:git:https://github.com/socketio/engine.io-client-java.git</developerConnection>
<tag>HEAD</tag>
<tag>engine.io-client-2.1.0</tag>
</scm>

<developers>
Expand Down
4 changes: 2 additions & 2 deletions src/site/markdown/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>
```
Expand All @@ -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:engine.io-client:2.0.0') {
compile ('io.socket:engine.io-client:2.1.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}
Expand Down

0 comments on commit 2469933

Please sign in to comment.