Skip to content

Commit 75d7bb5

Browse files
chore(release): prepare release socket.io-client-2.0.0
1 parent a857b9b commit 75d7bb5

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

History.md

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

2+
2.0.0 / 2020-12-15
3+
==================
4+
5+
### Features
6+
7+
* add options builder ([#304](https://github.com/socketio/socket.io-client-java/issues/304)) ([49068d3](https://github.com/socketio/socket.io-client-java/commit/49068d3cc504c9b83e29a8d5cb4350360c6ef8ea))
8+
* add support for Socket.IO v3 ([79cb27f](https://github.com/socketio/socket.io-client-java/commit/79cb27fc979ecf1eec9dc2dd4a72c8081149d1e2))
9+
10+
211
1.0.1 / 2020-12-10
312
==================
413

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ See also:
2727
| -------------- | ---------------- |
2828
| 0.9.x | 1.x |
2929
| 1.x | 2.x |
30-
| WIP | 3.x |
30+
| 2.x | 3.x |
3131

3232
## Installation
3333
The latest artifact is available on Maven Central.
@@ -40,7 +40,7 @@ Add the following dependency to your `pom.xml`.
4040
<dependency>
4141
<groupId>io.socket</groupId>
4242
<artifactId>socket.io-client</artifactId>
43-
<version>1.0.1</version>
43+
<version>2.0.0</version>
4444
</dependency>
4545
</dependencies>
4646
```
@@ -49,7 +49,7 @@ Add the following dependency to your `pom.xml`.
4949
Add it as a gradle dependency for Android Studio, in `build.gradle`:
5050

5151
```groovy
52-
compile ('io.socket:socket.io-client:1.0.1') {
52+
compile ('io.socket:socket.io-client:2.0.0') {
5353
// excluding org.json which is provided by Android
5454
exclude group: 'org.json', module: 'json'
5555
}

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

3636
<developers>

src/site/markdown/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| -------------- | ---------------- |
55
| 0.9.x | 1.x |
66
| 1.x | 2.x |
7-
| WIP | 3.x |
7+
| 2.x | 3.x |
88

99
## Installation
1010
The latest artifact is available on Maven Central.
@@ -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>1.0.1</version>
20+
<version>2.0.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:socket.io-client:1.0.1') {
29+
compile ('io.socket:socket.io-client:2.0.0') {
3030
// excluding org.json which is provided by Android
3131
exclude group: 'org.json', module: 'json'
3232
}

0 commit comments

Comments
 (0)