File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff 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>
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments