Skip to content

Commit 2c29f82

Browse files
committed
v.6.0.0 release
1 parent 39ca387 commit 2c29f82

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

RELEASE-NOTES.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
v.5.3.0
2-
- Fixed potential infinite loop in socket reading method
3-
- Fixed potential response string corruption for registries which use multi-byte encoding
4-
- Fixed IPv6 address parsing in APNIC response
5-
6-
v.5.2.0
7-
- Moved TcpClient creation to separate class, enabling usage in special cases like flowing traffic through SOCKS proxy
1+
v.6.0.0
2+
- [BREAKING CHANGE] The Default timeout for communication with servers was changed to 2 seconds, and the default retry count was changed to 3 times (Issue #10 by Makaopior)
3+
- Improved resolving an organization name from a raw response text from a WHOIS server
4+
- Improved that TcpClient creation is moved to a separate function, enabling usage in special cases like flowing traffic through a SOCKS proxy (PR #9 by Makaopior)
5+
- Fixed potential infinite loop in socket reading method (Issue #11, PR #9 by Makaopior)
6+
- Fixed potential response string corruption for registries which use multi-byte encoding (Issue #12, PR #13 by Makaopior)
7+
- Fixed IPv6 address parsing in APNIC response (PR #14 by Makaopior)
88

99
v.5.1.0
10-
- Added parsing of alternative JPNIC response format (without key letters)
10+
- Added parsing of alternative JPNIC response format (without key letters) (PR #8 by Makaopior)
11+
- Added ability to rethrow transport exceptions that've occurred during WHOIS request instead of swallowing them (PR #8 by Makaopior)
1112
- Fixed tests
12-
- Added ability to rethrow transport exceptions that've occurred during WHOIS request instead of swallowing them
1313

1414
v.5.0.0
1515
- Update the target frameworks

WhoisClient.NET.TestDrive/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
static void SyncVersion()
1111
{
1212
WriteLine("\n---- Sync version ----");
13-
var result = WhoisClient.Query("8.8.8.8");
13+
var result = WhoisClient.Query("8.8.8.8", options: default);
1414

1515
WriteLine($"{result.AddressRange.Begin} - {result.AddressRange.End}");
1616
WriteLine(result.OrganizationName);
@@ -20,7 +20,7 @@ static void SyncVersion()
2020
static async Task AsyncVersion()
2121
{
2222
WriteLine("\n---- Async version ----");
23-
var result = await WhoisClient.QueryAsync("8.8.8.8");
23+
var result = await WhoisClient.QueryAsync("8.8.8.8", options: default);
2424

2525
WriteLine($"{result.AddressRange.Begin} - {result.AddressRange.End}");
2626
WriteLine(result.OrganizationName);

WhoisClient.NET.TestDrive/WhoisClient.NET.TestDrive.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net462</TargetFrameworks>
5+
<TargetFrameworks>net9.0;net462</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<WarningsAsErrors>nullable</WarningsAsErrors>
99
<LangVersion>10</LangVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="WhoisClient.NET" Version="4.0.0" />
13+
<PackageReference Include="WhoisClient.NET" Version="6.0.0" />
1414
</ItemGroup>
1515

1616
</Project>

WhoisClient.NET/WhoisClient.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AssemblyName>WhoisClient</AssemblyName>
1010
<Product>WhoisClient.NET</Product>
1111
<Authors>J.Sakamoto, Keith J. Jones, Martijn Storck, Makaopior</Authors>
12-
<Version>5.3.0</Version>
12+
<Version>6.0.0</Version>
1313
<Copyright>Copyright 2012-2025 J.Sakamoto; 2016 Keith J. Jones; 2023 Martijn Storck; 2025 Makaopior; Ms-PL License.</Copyright>
1414
<PackageLicenseExpression>MS-PL</PackageLicenseExpression>
1515
<PackageProjectUrl>https://github.com/jsakamoto/WhoisClient.NET/</PackageProjectUrl>

0 commit comments

Comments
 (0)