File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
7
## 1.1.0
4
8
* [ FIX] Mitigates NRE and race in Connect/Disconnect (PR #72 , issue #71 )
5
9
* [ 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()
213
213
{
214
214
var scheme = _options . Encrypted ? Constants . SECURE_SCHEMA : Constants . INSECURE_SCHEMA ;
215
215
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 ";
217
217
}
218
218
219
219
/// <summary>
Original file line number Diff line number Diff line change 7
7
<PropertyGroup >
8
8
<PackageId >PusherClient</PackageId >
9
9
<PackageTitle >Pusher .NET Client Library</PackageTitle >
10
- <PackageVersion >1.1.0 </PackageVersion >
10
+ <PackageVersion >1.1.1 </PackageVersion >
11
11
<PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
12
12
<PackageTags >pusher realtime websocket</PackageTags >
13
13
<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