Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion PusherClient/Pusher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion PusherClient/PusherClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PropertyGroup>
<PackageId>PusherClient</PackageId>
<PackageTitle>Pusher .NET Client Library</PackageTitle>
<PackageVersion>1.1.0</PackageVersion>
<PackageVersion>1.1.1</PackageVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>pusher realtime websocket</PackageTags>
<License>https://github.com/pusher/pusher-websocket-dotnet/blob/master/LICENSE.txt</License>
Expand Down