From 6ba7a2cc1e48a9f7ae6c3648b4b2991462d9241b Mon Sep 17 00:00:00 2001 From: sonologico <1592315+sonologico@users.noreply.github.com> Date: Mon, 4 Jul 2022 09:42:20 +0200 Subject: [PATCH] Prepare for 2.3.0-beta release (#329) --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- build.gradle | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c4655e..68ab3e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index e5859190..d6c2b0b8 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ The pusher-java-client is available in Maven Central. com.pusher pusher-java-client - 2.2.8 + 2.3.0-beta ``` @@ -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' } ``` diff --git a/build.gradle b/build.gradle index 696da6e2..1a225b98 100644 --- a/build.gradle +++ b/build.gradle @@ -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"