wip
Some checks failed
default / dotnet-default-workflow (push) Failing after 27s

This commit is contained in:
Louis Seubert 2026-05-20 22:35:19 +02:00
commit 73156ba97f
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
4 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.SemVer;
public readonly partial record struct SemanticVersion : IComparable, IComparable<SemanticVersion>
@ -45,4 +48,4 @@ public readonly partial record struct SemanticVersion : IComparable, IComparable
{
return left.CompareTo(right) >= 0;
}
}
}

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Runtime.CompilerServices;
namespace Geekeey.SemVer;
@ -100,6 +103,8 @@ public readonly partial record struct SemanticVersion : ISpanFormattable
charsWritten += written;
}
_ = destination;
return true;
}

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Diagnostics.CodeAnalysis;
using System.Globalization;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.SemVer;
/// <summary>