Skip to content

Commit

Permalink
NuGet v6.2.1, dep update for security
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed Jul 14, 2024
1 parent bc53db0 commit 84550ad
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/WatsonWebserver.Core/HttpResponseBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private string GetStatusDescription(int statusCode)
case 203:
return "Non-Authoritative Information";
case 204:
return "No Contact";
return "No Content";
case 205:
return "Reset Content";
case 206:
Expand Down
4 changes: 2 additions & 2 deletions src/WatsonWebserver.Core/WatsonWebserver.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.1;net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<Version>6.2.0</Version>
<Version>6.2.1</Version>
<PackageId>Watson.Core</PackageId>
<Title>Watson Webserver Core</Title>
<Company>Joel Christner</Company>
Expand Down Expand Up @@ -82,7 +82,7 @@
<ItemGroup>
<PackageReference Include="IpMatcher" Version="1.0.4.4" />
<PackageReference Include="RegexMatcher" Version="1.0.8" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="Timestamps" Version="1.0.9" />
<PackageReference Include="UrlMatcher" Version="2.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/WatsonWebserver.Lite/HttpResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ private string GetStatusDescription(int statusCode)
case 203:
return "Non-Authoritative Information";
case 204:
return "No Contact";
return "No Content";
case 205:
return "Reset Content";
case 206:
Expand Down
4 changes: 2 additions & 2 deletions src/WatsonWebserver.Lite/WatsonWebserver.Lite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>6.2.0</Version>
<Version>6.2.1</Version>
<Description>Simple, fast, async C# web server for handling REST requests with SSL support, targeted to .NET Core, .NET Standard, and .NET Framework. Watson.Lite has no dependency on http.sys.</Description>
<Authors>Joel Christner</Authors>
<Company>Joel Christner</Company>
Expand Down Expand Up @@ -68,7 +68,7 @@

<ItemGroup>
<PackageReference Include="CavemanTcp" Version="2.0.2" />
<PackageReference Include="Watson.Core" Version="6.2.0" />
<PackageReference Include="Watson.Core" Version="6.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/WatsonWebserver/HttpResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ private string GetStatusDescription(int statusCode)
case 203:
return "Non-Authoritative Information";
case 204:
return "No Contact";
return "No Content";
case 205:
return "Reset Content";
case 206:
Expand Down
4 changes: 2 additions & 2 deletions src/WatsonWebserver/WatsonWebserver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>6.2.0</Version>
<Version>6.2.1</Version>
<Description>Simple, fast, async C# web server for handling REST requests with SSL support, targeted to .NET Core, .NET Standard, and .NET Framework.</Description>
<Authors>Joel Christner</Authors>
<Company>Joel Christner</Company>
Expand Down Expand Up @@ -67,7 +67,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Watson.Core" Version="6.2.0" />
<PackageReference Include="Watson.Core" Version="6.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 84550ad

Please sign in to comment.