File tree 4 files changed +21
-8
lines changed
4 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 1
1
2
+ 2.0.0 / 2020-12-11
3
+ ==================
4
+
5
+ ### Features
6
+
7
+ * add an extraHeaders option ([ dfe65e3] ( https://github.com/socketio/engine.io-client-java/commit/dfe65e3b3b5eab4c3fddb9dfbf53d684fe461043 ) )
8
+ * add support for Engine.IO v4 ([ 41f89a3] ( https://github.com/socketio/engine.io-client-java/commit/41f89a38b7594f54ee9906bc91051874a60b690d ) )
9
+
10
+ ### Bug Fixes
11
+
12
+ * check the type of the initial packet ([ 2b5dfb9] ( https://github.com/socketio/engine.io-client-java/commit/2b5dfb99f8f865362ddc0a17f52e8b70269d7572 ) )
13
+
14
+
2
15
1.0.1 / 2020-12-10
3
16
==================
4
17
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ See also: [Socket.IO-client Java](https://github.com/socketio/socket.io-client-j
22
22
| -------------- | ---------------- | ---------------- |
23
23
| 0.9.x | 1.x | 1.x |
24
24
| 1.x | 3.x | 2.x |
25
- | WIP | 4.x | 3.x |
25
+ | 2.x | 4.x | 3.x |
26
26
27
27
## Installation
28
28
The latest artifact is available on Maven Central.
@@ -35,7 +35,7 @@ Add the following dependency to your `pom.xml`.
35
35
<dependency >
36
36
<groupId >io.socket</groupId >
37
37
<artifactId >engine.io-client</artifactId >
38
- <version >1 .0.1 </version >
38
+ <version >2 .0.0 </version >
39
39
</dependency >
40
40
</dependencies >
41
41
```
@@ -44,7 +44,7 @@ Add the following dependency to your `pom.xml`.
44
44
Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
45
45
46
46
``` groovy
47
- compile ('io.socket:engine.io-client:1 .0.1 ') {
47
+ compile ('io.socket:engine.io-client:2 .0.0 ') {
48
48
// excluding org.json which is provided by Android
49
49
exclude group: 'org.json', module: 'json'
50
50
}
Original file line number Diff line number Diff line change 2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >io.socket</groupId >
4
4
<artifactId >engine.io-client</artifactId >
5
- <version >1 .0.2-SNAPSHOT </version >
5
+ <version >2 .0.0 </version >
6
6
<packaging >jar</packaging >
7
7
<name >engine.io-client</name >
8
8
<description >Engine.IO Client Library for Java</description >
30
30
<url >https://github.com/socketio/engine.io-client-java</url >
31
31
<connection >scm:git:https://github.com/socketio/engine.io-client-java.git</connection >
32
32
<developerConnection >scm:git:https://github.com/socketio/engine.io-client-java.git</developerConnection >
33
- <tag >HEAD </tag >
33
+ <tag >engine.io-client-2.0.0 </tag >
34
34
</scm >
35
35
36
36
<developers >
Original file line number Diff line number Diff line change 4
4
| -------------- | ---------------- | ---------------- |
5
5
| 0.9.x | 1.x | 1.x |
6
6
| 1.x | 3.x | 2.x |
7
- | WIP | 4.x | 3.x |
7
+ | 2.x | 4.x | 3.x |
8
8
9
9
## Installation
10
10
The latest artifact is available on Maven Central.
@@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
17
17
<dependency >
18
18
<groupId >io.socket</groupId >
19
19
<artifactId >engine.io-client</artifactId >
20
- <version >1 .0.1 </version >
20
+ <version >2 .0.0 </version >
21
21
</dependency >
22
22
</dependencies >
23
23
```
@@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`.
26
26
Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
27
27
28
28
``` groovy
29
- compile ('io.socket:engine.io-client:1 .0.1 ') {
29
+ compile ('io.socket:engine.io-client:2 .0.0 ') {
30
30
// excluding org.json which is provided by Android
31
31
exclude group: 'org.json', module: 'json'
32
32
}
You can’t perform that action at this time.
0 commit comments