Skip to content

Commit dcd1fb0

Browse files
authored
Merge pull request #88 from pusher/release-v1.1.1
Release 1.1.1
2 parents dfd1a37 + 0c5f018 commit dcd1fb0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.1.1
4+
* [FIX] Removed extra double quotes from PusherEvent.Data string (PR #84)
5+
* [FIX] Fixed JsonReaderException in the HttpAuthorizer (issue #78, issue #85, PR #86)
6+
37
## 1.1.0
48
* [FIX] Mitigates NRE and race in Connect/Disconnect (PR #72, issue #71)
59
* [FIX] Potential incompatibility with il2cpp compiler for iOS target due to dynamic keyword (issue #69)

PusherClient/Pusher.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private string ConstructUrl()
213213
{
214214
var scheme = _options.Encrypted ? Constants.SECURE_SCHEMA : Constants.INSECURE_SCHEMA;
215215

216-
return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.0";
216+
return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.1";
217217
}
218218

219219
/// <summary>

PusherClient/PusherClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PropertyGroup>
88
<PackageId>PusherClient</PackageId>
99
<PackageTitle>Pusher .NET Client Library</PackageTitle>
10-
<PackageVersion>1.1.0</PackageVersion>
10+
<PackageVersion>1.1.1</PackageVersion>
1111
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1212
<PackageTags>pusher realtime websocket</PackageTags>
1313
<License>https://github.com/pusher/pusher-websocket-dotnet/blob/master/LICENSE.txt</License>

0 commit comments

Comments
 (0)