Version 1.1 is ready for release.

This commit is contained in:
That_One_Nerd 2024-03-13 10:26:15 -04:00
parent 6d8787cac7
commit 4989de2ed2
2 changed files with 6 additions and 3 deletions

View File

@ -12,7 +12,7 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ThatOneNerd.Graphing</PackageId>
<Title>ThatOneNerd.Graphing</Title>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Authors>That_One_Nerd</Authors>
<Description>A fairly adept graphing calculator made in Windows Forms.</Description>
<Copyright>MIT</Copyright>
@ -22,6 +22,9 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>View the GitHub release for the changelog:
https://github.com/That-One-Nerd/Graphing/releases/tag/1.1.0</PackageReleaseNotes>
<PackAsTool>True</PackAsTool>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

@ -2,7 +2,7 @@
namespace Graphing.Parts;
public struct GraphRectangle : IGraphPart
public record struct GraphRectangle : IGraphPart
{
public Float2 min, max;