Skip to content

Commit

Permalink
Prepare for 2.3.0-beta release (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonologico authored Jul 4, 2022
1 parent 032325c commit 6ba7a2c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# pusher-websocket-java changelog

### Version 2.3.0 - 4th July 2022
* Added support for user sign in and server to user messages
* Fixed issue with calling disconnect while the client is attempting reconnection
* Fixed issue with calling connect while the client is disconnecting

### Version 2.2.8 - 30th November 2021
* Add global [event listner](https://github.com/pusher/pusher-websocket-java/issues/305)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The pusher-java-client is available in Maven Central.
<dependency>
<groupId>com.pusher</groupId>
<artifactId>pusher-java-client</artifactId>
<version>2.2.8</version>
<version>2.3.0-beta</version>
</dependency>
</dependencies>
```
Expand All @@ -83,7 +83,7 @@ The pusher-java-client is available in Maven Central.

```groovy
dependencies {
compile 'com.pusher:pusher-java-client:2.2.8'
compile 'com.pusher:pusher-java-client:2.3.0-beta'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def getProperty = { property ->
}

group = "com.pusher"
version = "2.2.8"
version = "2.3.0-beta"
sourceCompatibility = "1.8"
targetCompatibility = "1.8"

Expand Down

0 comments on commit 6ba7a2c

Please sign in to comment.