Skip to content

Commit 1140606

Browse files
committed
v2.3.0
[skip ci]
1 parent c087107 commit 1140606

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.3.0] - 2021-7-21
9+
10+
### Added
11+
12+
- OnReconnected event
13+
- OnReconnectAttempt event
14+
- OnReconnectError event
15+
- OnReconnectFailed event
16+
17+
### Changed
18+
19+
SocketIOCLient.Windows7 becomes a plug-in, the following code shows how to support Windows7 / Windows 2008 R2
20+
21+
```cs
22+
var client = new SocketIOClient(...);
23+
client.Socket = new ClientWebSocketManaged();
24+
```
25+
26+
### Removed
27+
28+
- OnReconnecting event
29+
- Options.AllowedRetryFirstConnection
30+
- OnReceivedEvent event
31+
832
## [2.2.4] - 2021-6-24
933

1034
SocketIOClient

src/SocketIOClient.Windows7/SocketIOClient.Windows7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>2.2.4.2-alpha.2</Version>
6+
<Version>2.3.0</Version>
77
<Description>socket.io-client implemention for .NET</Description>
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<PackageProjectUrl>https://github.com/doghappy/socket.io-client-csharp</PackageProjectUrl>

src/SocketIOClient/SocketIOClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<RepositoryType>github</RepositoryType>
1414
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1515
<PackageLicenseFile></PackageLicenseFile>
16-
<Version>2.2.4</Version>
16+
<Version>2.3.0</Version>
1717
<PackageReleaseNotes></PackageReleaseNotes>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<SignAssembly>true</SignAssembly>

0 commit comments

Comments
 (0)