Skip to content

Commit

Permalink
Merge pull request #88 from pusher/release-v1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
damdo authored Nov 27, 2019
2 parents dfd1a37 + 0c5f018 commit dcd1fb0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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

0 comments on commit dcd1fb0

Please sign in to comment.