File tree Expand file tree Collapse file tree 4 files changed +21
-8
lines changed Expand file tree Collapse file tree 4 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 11
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+
2151.0.1 / 2020-12-10
316==================
417
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
2222| -------------- | ---------------- | ---------------- |
2323| 0.9.x | 1.x | 1.x |
2424| 1.x | 3.x | 2.x |
25- | WIP | 4.x | 3.x |
25+ | 2.x | 4.x | 3.x |
2626
2727## Installation
2828The latest artifact is available on Maven Central.
@@ -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 >1 .0.1 </version >
38+ <version >2 .0.0 </version >
3939 </dependency >
4040</dependencies >
4141```
@@ -44,7 +44,7 @@ Add the following dependency to your `pom.xml`.
4444Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
4545
4646``` groovy
47- compile ('io.socket:engine.io-client:1 .0.1 ') {
47+ compile ('io.socket:engine.io-client:2 .0.0 ') {
4848 // excluding org.json which is provided by Android
4949 exclude group: 'org.json', module: 'json'
5050}
Original file line number Diff line number Diff line change 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >io.socket</groupId >
44 <artifactId >engine.io-client</artifactId >
5- <version >1 .0.2-SNAPSHOT </version >
5+ <version >2 .0.0 </version >
66 <packaging >jar</packaging >
77 <name >engine.io-client</name >
88 <description >Engine.IO Client Library for Java</description >
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.0.0 </tag >
3434 </scm >
3535
3636 <developers >
Original file line number Diff line number Diff line change 44| -------------- | ---------------- | ---------------- |
55| 0.9.x | 1.x | 1.x |
66| 1.x | 3.x | 2.x |
7- | WIP | 4.x | 3.x |
7+ | 2.x | 4.x | 3.x |
88
99## Installation
1010The 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 >engine.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`.
2626Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
2727
2828``` groovy
29- compile ('io.socket:engine.io-client:1 .0.1 ') {
29+ compile ('io.socket:engine.io-client:2 .0.0 ') {
3030 // excluding org.json which is provided by Android
3131 exclude group: 'org.json', module: 'json'
3232}
You can’t perform that action at this time.
0 commit comments