Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
doghappy committed Jul 22, 2021
1 parent c087107 commit 1140606
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.0] - 2021-7-21

### Added

- OnReconnected event
- OnReconnectAttempt event
- OnReconnectError event
- OnReconnectFailed event

### Changed

SocketIOCLient.Windows7 becomes a plug-in, the following code shows how to support Windows7 / Windows 2008 R2

```cs
var client = new SocketIOClient(...);
client.Socket = new ClientWebSocketManaged();
```

### Removed

- OnReconnecting event
- Options.AllowedRetryFirstConnection
- OnReceivedEvent event

## [2.2.4] - 2021-6-24

SocketIOClient
Expand Down
2 changes: 1 addition & 1 deletion src/SocketIOClient.Windows7/SocketIOClient.Windows7.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.2.4.2-alpha.2</Version>
<Version>2.3.0</Version>
<Description>socket.io-client implemention for .NET</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/doghappy/socket.io-client-csharp</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/SocketIOClient/SocketIOClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<RepositoryType>github</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile></PackageLicenseFile>
<Version>2.2.4</Version>
<Version>2.3.0</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit 1140606

Please sign in to comment.