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,9 +12,9 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ThatOneNerd.Graphing</PackageId> <PackageId>ThatOneNerd.Graphing</PackageId>
<Title>ThatOneNerd.Graphing</Title> <Title>ThatOneNerd.Graphing</Title>
<Version>1.0.0</Version> <Version>1.1.0</Version>
<Authors>That_One_Nerd</Authors> <Authors>That_One_Nerd</Authors>
<Description>A fairly adept graphing calculator made in Windows Forms. </Description> <Description>A fairly adept graphing calculator made in Windows Forms.</Description>
<Copyright>MIT</Copyright> <Copyright>MIT</Copyright>
<RepositoryUrl>https://github.com/That-One-Nerd/Graphing</RepositoryUrl> <RepositoryUrl>https://github.com/That-One-Nerd/Graphing</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
@ -22,6 +22,9 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols> <IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat> <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>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

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