diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b21fefe..c9f07f95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.1.1 +* [FIX] Removed extra double quotes from PusherEvent.Data string (PR #84) +* [FIX] Fixed JsonReaderException in the HttpAuthorizer (issue #78, issue #85, PR #86) + ## 1.1.0 * [FIX] Mitigates NRE and race in Connect/Disconnect (PR #72, issue #71) * [FIX] Potential incompatibility with il2cpp compiler for iOS target due to dynamic keyword (issue #69) diff --git a/PusherClient/Pusher.cs b/PusherClient/Pusher.cs index 9545ca2b..a9bb0e56 100644 --- a/PusherClient/Pusher.cs +++ b/PusherClient/Pusher.cs @@ -213,7 +213,7 @@ private string ConstructUrl() { var scheme = _options.Encrypted ? Constants.SECURE_SCHEMA : Constants.INSECURE_SCHEMA; - return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.0"; + return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.1"; } /// diff --git a/PusherClient/PusherClient.csproj b/PusherClient/PusherClient.csproj index be35c4a8..a010491b 100644 --- a/PusherClient/PusherClient.csproj +++ b/PusherClient/PusherClient.csproj @@ -7,7 +7,7 @@ PusherClient Pusher .NET Client Library - 1.1.0 + 1.1.1 false pusher realtime websocket https://github.com/pusher/pusher-websocket-dotnet/blob/master/LICENSE.txt