Skip to content

Commit 374a21f

Browse files
committed
v1.1.2
1 parent 1267655 commit 374a21f

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,29 @@
11
# pusher-websocket-java changelog
22

3-
## Version 1.0.2
3+
## Version 1.1.2
44

5-
2015-11-06 leggetter, siggijons
6-
* Use @SerializedName in PresenceChannelImpl for better serialization support across languages e.g. Turkish
5+
2016-03-23 jpatel531
76

8-
## Version 1.0.1
7+
* Fix cases where the library would throw an error due to a connection state change
8+
from `CONNECTING` to `CONNECTING`. More information [here](https://github.com/pusher/pusher-websocket-java/pull/102)
9+
* Fix `ConcurrentModificationException` on event listeners.
910

10-
2015-11-06 hamchapman, jpatel531
11-
* Resolves issues where Gson would cast numeric user ids as doubles before converting them to a string, leading to inconsistencies
11+
## Version 1.1.1
12+
13+
2016-03-22 jpatel531
14+
15+
* Removes the dependency on slf4j-log4j
16+
17+
## Version 1.1.0
18+
19+
2016-03-09 jpatel531, jameshfisher
20+
21+
* Allow specifying a proxy via which to connect to Pusher.
22+
23+
## Version 1.0.2
24+
25+
2015-11-06 leggetter, siggijons
26+
* Use @SerializedName in PresenceChannelImpl for better serialization support across languages e.g. Turkish
1227

1328
## Version 1.0.1
1429

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The pusher-java-client is available in Maven Central, however one of its depende
5656
<dependency>
5757
<groupId>com.pusher</groupId>
5858
<artifactId>pusher-java-client</artifactId>
59-
<version>1.0.2</version>
59+
<version>1.1.2</version>
6060
</dependency>
6161
</dependencies>
6262
```
@@ -69,7 +69,7 @@ repositories {
6969
}
7070
7171
dependencies {
72-
compile 'com.pusher:pusher-java-client:1.1.1'
72+
compile 'com.pusher:pusher-java-client:1.1.2'
7373
}
7474
```
7575

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.1.1"
24+
version = "1.1.2"
2525
sourceCompatibility = "1.6"
2626
targetCompatibility = "1.6"
2727

pom.xml

Lines changed: 1 addition & 1 deletion
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.1.1</version>
13+
<version>1.1.2</version>
1414
<url>http://github.com/pusher/pusher-java-client</url>
1515

1616
<description>

0 commit comments

Comments
 (0)