Skip to content

Commit 9520df2

Browse files
authored
Merge pull request #82 from pusher/release-v1.1.0
Release 1.1.0
2 parents 7168cb1 + 64fe762 commit 9520df2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.1.0
4+
* [FIX] Mitigates NRE and race in Connect/Disconnect (PR #72, issue #71)
5+
* [FIX] Potential incompatibility with il2cpp compiler for iOS target due to dynamic keyword (issue #69)
6+
* [FIX] Race condition in PresenceChannel name (issue #44)
7+
* [ADDED] Extended API for Bind/Unbind and BindAll/UnbindAll to emit a more idiomatic <PusherEvent> as an alternative to the raw data String
8+
* [ADDED] NUnit 3 Test Adaptor to enable test integration with VS2019
9+
310
## 1.0.2
411
* [CHANGED] Project now targets DotNet Standard 1.6.
512
* [REMOVED] Retired Sync versions of method. Updated tests to use async versions of methods.

PusherClient/Pusher.cs

+2-2
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=0.0.1";
216+
return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.0";
217217
}
218218

219219
/// <summary>
@@ -423,4 +423,4 @@ private void SubscribeExistingChannels()
423423
}
424424
}
425425
}
426-
}
426+
}

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>0.6</PackageVersion>
10+
<PackageVersion>1.1.0</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)