Skip to content

Commit 811394c

Browse files
author
Zan Markan
committed
Bump to version 1.3.0
1 parent abc7d5d commit 811394c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# pusher-websocket-java changelog
22

3+
## Version 1.3.0
4+
5+
* Add retry logic when the connection is lost
6+
* Accept 201 status code from auth endpoints
7+
38
## Version 1.2.2
49

510
* Improve resillience of pong timeout disconnections
@@ -101,7 +106,7 @@
101106

102107
2013-11-04 mdpye
103108
* Import a logging framework (slf4j)
104-
* Log error with additional info and continue when trying to
109+
* Log error with additional info and continue when trying to
105110
transition from disconnected->disconnected state
106111

107112
2013-11-01 mdpye

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The pusher-java-client is available in Maven Central, however one of its depende
5858
<dependency>
5959
<groupId>com.pusher</groupId>
6060
<artifactId>pusher-java-client</artifactId>
61-
<version>1.2.2</version>
61+
<version>1.3.0</version>
6262
</dependency>
6363
</dependencies>
6464
```
@@ -71,7 +71,7 @@ repositories {
7171
}
7272
7373
dependencies {
74-
compile 'com.pusher:pusher-java-client:1.2.2'
74+
compile 'com.pusher:pusher-java-client:1.3.0'
7575
}
7676
```
7777

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'org.ajoberstar.github-pages'
2121
apply plugin: 'signing'
2222

2323
group = "com.pusher"
24-
version = "1.2.2"
24+
version = "1.3.0"
2525
sourceCompatibility = "1.6"
2626
targetCompatibility = "1.6"
2727

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>com.pusher</groupId>
1111
<artifactId>pusher-java-client</artifactId>
1212
<name>Pusher Java Client Library</name>
13-
<version>1.2.2</version>
13+
<version>1.3.0</version>
1414
<url>http://github.com/pusher/pusher-java-client</url>
1515

1616
<description>
@@ -174,7 +174,7 @@
174174
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
175175
</configuration>
176176
<executions>
177-
<!-- run site-maven-plugin's 'site' target as part of the build's normal
177+
<!-- run site-maven-plugin's 'site' target as part of the build's normal
178178
'deploy' phase -->
179179
<execution>
180180
<id>javadoc</id>

0 commit comments

Comments
 (0)