File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11# pusher-websocket-java changelog
22
3+ ## Version 2.1.1 - 15th April 2020
4+
5+ * Fix a case where multiple websocket connections could be opened at once
6+ if reconnection was triggered by an activity timeout.
7+
38## Version 2.1.0 - 8th April 2020
49
510* Added support for [ private encrypted channels] ( https://pusher.com/docs/channels/using_channels/encrypted-channels )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ The pusher-java-client is available in Maven Central.
6161 <dependency >
6262 <groupId >com.pusher</groupId >
6363 <artifactId >pusher-java-client</artifactId >
64- <version >2.1.0 </version >
64+ <version >2.1.1 </version >
6565 </dependency >
6666</dependencies >
6767```
@@ -70,7 +70,7 @@ The pusher-java-client is available in Maven Central.
7070
7171``` groovy
7272dependencies {
73- compile 'com.pusher:pusher-java-client:2.1.0 '
73+ compile 'com.pusher:pusher-java-client:2.1.1 '
7474}
7575```
7676
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ apply plugin: 'signing'
2222apply plugin : ' jacoco'
2323
2424group = " com.pusher"
25- version = " 2.1.0 "
25+ version = " 2.1.1 "
2626sourceCompatibility = " 1.8"
2727targetCompatibility = " 1.8"
2828
@@ -201,4 +201,4 @@ jacocoTestReport {
201201 reports. xml. enabled = true
202202 reports. html. enabled = false
203203 reports. csv. enabled = false
204- }
204+ }
You can’t perform that action at this time.
0 commit comments