Skip to content

Commit

Permalink
🚀 Bump Package Version
Browse files Browse the repository at this point in the history
  • Loading branch information
xobust committed Oct 26, 2023
1 parent 47c1b28 commit 754c7b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/CoreRCON/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ internal class Constants
/// The maximum size of an RCON packet.
/// (Officially 4096, larger packet where received when running cvarlist)
/// </summary>
internal const int MAX_PACKET_SIZE = 4200;
internal const int MAX_PACKET_SIZE = 4096;

/// <summary>
/// Minimum size of a rcon packet
Expand Down
9 changes: 4 additions & 5 deletions src/CoreRCON/CoreRCON.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>A .NET Core implementation of the RCON spec.</Description>
<Description>A .NET Standard implementation of the Source RCON Protocol.</Description>
<AssemblyTitle>CoreRCON</AssemblyTitle>
<VersionPrefix>2.0.0</VersionPrefix>
<Authors>Alexander Westberg-Bladh Scott Kaye</Authors>
Expand All @@ -17,13 +17,12 @@
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Version>5.1.0</Version>
<Version>5.2.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>5.1.0</AssemblyVersion>
<FileVersion>5.1.0.0</FileVersion>
<PackageReleaseNotes>Made logging optional (#27)
Added application level timeouts exceptions.
Disabled concurrent requests for now.</PackageReleaseNotes>
<PackageReleaseNotes>Observer exceptions correctly.
Support larger </PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
Expand Down

0 comments on commit 754c7b6

Please sign in to comment.