Skip to content

Commit 14dfcd6

Browse files
authored
Merge pull request #221 from pusher/v2.0.1
v2.0.1 release
2 parents 8d8d70a + f6457dc commit 14dfcd6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This Changelog is no longer being updated. For any further changes please see the Releases section on this Github repository - https://github.com/pusher/pusher-websocket-java/releases
44

5+
## Version 2.0.1
6+
7+
* Forward `channel_data` returned by the auth endpoint when subscribing to private channels
8+
59
## Version 2.0.0
610

711
* The onEvent handler now gets called with one parameter, called the PusherEvent. This PusherEvent has all the same information available as was available before with the 3 parameters, but now is accessible by calling getChannelName(), getData() or getEventName() on the PusherEvent object you receive. In addition, for presence channel client events, you can now retrieve an authenticated User ID by calling getUserId() on the PusherEvent object. To read more on Authenticated users, see the README or our docs [here](https://pusher.com/docs/channels/using_channels/events#user-id-in-client-events).

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.
5858
<dependency>
5959
<groupId>com.pusher</groupId>
6060
<artifactId>pusher-java-client</artifactId>
61-
<version>2.0.0</version>
61+
<version>2.0.1</version>
6262
</dependency>
6363
</dependencies>
6464
```
@@ -67,7 +67,7 @@ The pusher-java-client is available in Maven Central.
6767

6868
```groovy
6969
dependencies {
70-
compile 'com.pusher:pusher-java-client:2.0.0'
70+
compile 'com.pusher:pusher-java-client:2.0.1'
7171
}
7272
```
7373

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 = "2.0.0"
24+
version = "2.0.1"
2525
sourceCompatibility = "1.8"
2626
targetCompatibility = "1.8"
2727

0 commit comments

Comments
 (0)