From d75f90022932bef49665481f3518aee0b9e94ba5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 18:19:22 +0000 Subject: [PATCH 1/2] Bump Nuke.Common from 10.0.0 to 10.1.0 --- updated-dependencies: - dependency-name: Nuke.Common dependency-version: 10.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build/_build.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_build.csproj b/build/_build.csproj index a98bb42..b94426d 100644 --- a/build/_build.csproj +++ b/build/_build.csproj @@ -15,7 +15,7 @@ - + From ccc1f72773a0b5467d2b8fe3fb6ab2b916ad806b Mon Sep 17 00:00:00 2001 From: Matt Richardson Date: Fri, 9 Jan 2026 06:57:15 +1100 Subject: [PATCH 2/2] Prevent FullSemVer ending with a `.` --- build/Build.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Build.cs b/build/Build.cs index 65074e8..b8a7bd0 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -42,7 +42,7 @@ class Build : NukeBuild string FullSemVer => OctoVersionInfo.FullSemVer.Length <= 35 ? OctoVersionInfo.FullSemVer - : OctoVersionInfo.FullSemVer[..35]; + : OctoVersionInfo.FullSemVer[..35].TrimEnd('.'); Target Clean => _ => _ .Before(Restore) @@ -133,4 +133,4 @@ void OverrideGitHubSemVer() /// - Microsoft VisualStudio https://nuke.build/visualstudio /// - Microsoft VSCode https://nuke.build/vscode public static int Main() => Execute(x => x.Pack); -} \ No newline at end of file +}