Skip to content

Commit 0e11f2f

Browse files
chore(release): prepare release socket.io-client-2.1.1
1 parent 54645ec commit 0e11f2f

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

History.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11

2+
2.1.1 / 2024-07-10
3+
==================
4+
5+
### Bug Fixes
6+
7+
* discard acknowledgements upon disconnection ([54645ec](https://github.com/socketio/socket.io-client-java/commit/54645ece2cd132f3e305b80904e1fc38bd41c4f9))
8+
* make sendBuffer thread safe ([#769](https://github.com/socketio/socket.io-client-java/issues/769)) ([b00ae8e](https://github.com/socketio/socket.io-client-java/commit/b00ae8eec1ef0aa5094fca7fad918a437603eb12))
9+
10+
11+
212
1.0.2 / 2022-07-11
313
==================
414

pom.xml

+3-3
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.1.1-SNAPSHOT</version>
5+
<version>2.1.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.1.1</tag>
3434
</scm>
3535

3636
<developers>
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.sonatype.plugins</groupId>
186186
<artifactId>nexus-staging-maven-plugin</artifactId>
187-
<version>1.6.7</version>
187+
<version>1.6.13</version>
188188
<extensions>true</extensions>
189189
<configuration>
190190
<serverId>ossrh</serverId>

src/site/markdown/changelog.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# History
2+
3+
| Version | Release date |
4+
|--------------------------------------------------------------------------------------------------------------|---------------|
5+
| [2.1.1](#211-2024-07-10) | July 2024 |
6+
| [1.0.2](#102-2022-07-11) (from the [1.x](https://github.com/socketio/socket.io-client-java/tree/1.x) branch) | July 2022 |
7+
| [2.1.0](#210-2022-07-10) | July 2022 |
8+
| [2.0.1](#201-2021-04-27) | April 2021 |
9+
| [2.0.0](#200-2020-12-14) | December 2020 |
10+
| [1.0.1](#101-2020-12-10) | December 2020 |
11+
12+
13+
# Release notes
14+
15+
## [2.1.1](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.1.0...socket.io-client-2.1.1) (2024-07-10)
16+
17+
18+
### Bug Fixes
19+
20+
* discard acknowledgements upon disconnection ([54645ec](https://github.com/socketio/socket.io-client-java/commit/54645ece2cd132f3e305b80904e1fc38bd41c4f9))
21+
* make sendBuffer thread safe ([#769](https://github.com/socketio/socket.io-client-java/issues/769)) ([b00ae8e](https://github.com/socketio/socket.io-client-java/commit/b00ae8eec1ef0aa5094fca7fad918a437603eb12))
22+
23+
124

225
## [1.0.2](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-1.0.1...socket.io-client-1.0.2) (2022-07-11)
326

src/site/markdown/installation.md

+3-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>socket.io-client</artifactId>
20-
<version>2.1.0</version>
20+
<version>2.1.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-
implementation ('io.socket:socket.io-client:2.1.0') {
29+
implementation ('io.socket:socket.io-client:2.1.1') {
3030
// excluding org.json which is provided by Android
3131
exclude group: 'org.json', module: 'json'
3232
}
@@ -36,6 +36,7 @@ implementation ('io.socket:socket.io-client:2.1.0') {
3636

3737
| `socket.io-client` | `engine.io-client` | `okhttp` |
3838
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
39+
| `2.1.1` ([diff](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.1.0...socket.io-client-2.1.1)) | `2.1.0` | `3.12.12` |
3940
| `2.1.0` ([diff](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.0.1...socket.io-client-2.1.0)) | `2.1.0` ([diff](https://github.com/socketio/engine.io-client-java/compare/engine.io-client-2.0.0...engine.io-client-2.1.0)) | `3.12.12` |
4041
| `2.0.1` ([diff](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.0.0...socket.io-client-2.0.1)) | `2.0.0` | `3.12.12` |
4142
| `2.0.0` ([diff](https://github.com/socketio/socket.io-client-java/compare/socket.io-client-1.0.1...socket.io-client-2.0.0)) | `2.0.0` ([diff](https://github.com/socketio/engine.io-client-java/compare/engine.io-client-1.0.1...engine.io-client-2.0.0)) | `3.12.12` |

0 commit comments

Comments
 (0)