Skip to content

Commit 2c25932

Browse files
committed
v2.2.4
[skip ci]
1 parent c3cbe4e commit 2c25932

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.2.4] - 2021-6-24
9+
10+
SocketIOClient
11+
SocketIOClient.Windows7
12+
13+
### Changed
14+
15+
- Set the default EIO to 4
16+
17+
### Added
18+
19+
- Strong name for SocketIOClient.Windows7
20+
821
## [2.2.3] - 2021-6-15
922

1023
SocketIOClient

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ An elegant socket.io client for .NET, Supports `.NET Standard 2.0`.
99

1010
[Wiki](https://github.com/doghappy/socket.io-client-csharp/wiki)
1111

12+
# Breaking changes in 2.2.4
13+
14+
Before SocketIOClient v2.2.4, the default EIO is 3, which works with socket.io v2.x, in SocketIOClient v2.2.4, the default EIO is 4, which works with socket.io v3.x and v4.x
15+
1216
# Breaking changes in 2.2.0
1317

1418
SocketIOClient v2.2.0 makes `System.Text.Json` the default JSON serializer. If you'd like to continue to use `Newtonsoft.Json`, add the **SocketIOClient.Newtonsoft.Json** NuGet package and set your **JsonSerializer** to **NewtonsoftJsonSerializer** on your SocketIO instance. System.Text.Json is faster and uses less memory.

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.3</Version>
6+
<Version>2.2.4</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.3</Version>
16+
<Version>2.2.4</Version>
1717
<PackageReleaseNotes></PackageReleaseNotes>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<SignAssembly>true</SignAssembly>

0 commit comments

Comments
 (0)