From 4989de2ed252159ed86b956562b2034d9c9657f5 Mon Sep 17 00:00:00 2001 From: That_One_Nerd Date: Wed, 13 Mar 2024 10:26:15 -0400 Subject: [PATCH] Version 1.1 is ready for release. --- Base/Base.csproj | 7 +++++-- Base/Parts/GraphRectangle.cs | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Base/Base.csproj b/Base/Base.csproj index 9813a82..dcc9944 100644 --- a/Base/Base.csproj +++ b/Base/Base.csproj @@ -12,9 +12,9 @@ True ThatOneNerd.Graphing ThatOneNerd.Graphing - 1.0.0 + 1.1.0 That_One_Nerd - A fairly adept graphing calculator made in Windows Forms. + A fairly adept graphing calculator made in Windows Forms. MIT https://github.com/That-One-Nerd/Graphing README.md @@ -22,6 +22,9 @@ MIT True snupkg + View the GitHub release for the changelog: +https://github.com/That-One-Nerd/Graphing/releases/tag/1.1.0 + True diff --git a/Base/Parts/GraphRectangle.cs b/Base/Parts/GraphRectangle.cs index ce2c37f..a874a42 100644 --- a/Base/Parts/GraphRectangle.cs +++ b/Base/Parts/GraphRectangle.cs @@ -2,7 +2,7 @@ namespace Graphing.Parts; -public struct GraphRectangle : IGraphPart +public record struct GraphRectangle : IGraphPart { public Float2 min, max;