Skip to content

Commit 1c2cd2f

Browse files
authored
Merge pull request #98 from pusher/release-v1.1.2
Release v1.1.2
2 parents 7790143 + 20fecbf commit 1c2cd2f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.2
4+
* [FIX] Switch to concurrent collections to avoid race in EventEmitter (issue #76, PR #93)
5+
* [FIX] Fix Reconnection issue and NRE on Disconnect() after websocket_Closed (issue #70, issue #71, issue #73, PR #95)
6+
* [FIX] Reset `_backOffMillis` after a successful reconnection (issue #97, PR #96)
7+
38
## 1.1.1
49
* [FIX] Removed extra double quotes from PusherEvent.Data string (PR #84)
510
* [FIX] Fixed JsonReaderException in the HttpAuthorizer (issue #78, issue #85, PR #86)
@@ -43,7 +48,7 @@
4348
* Newtonsoft.Json 7.0.1
4449
* WebSocket4Net 0.13.1
4550

46-
### 0.2.0
51+
## 0.2.0
4752

4853
* [CHANGED] Update package dependencies
4954
* Newtonsoft.Json 6.0.4

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.1";
216+
return $"{scheme}{_options.Host}/app/{_applicationKey}?protocol=5&client=pusher-dotnet-client&version=1.1.2";
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.1</PackageVersion>
10+
<PackageVersion>1.1.2</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)