From c416a3e6de159e37187ef087e660eaed1e9c7b8a Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 4 Jun 2026 07:52:50 -0700 Subject: [PATCH 1/3] Bump version to 3.18 for next prerelease cycle (#726) Post-promotion minor bump after the develop->main two-phase release, so develop's prereleases (3.18.x-g{sha}) sort above the shipped 3.17.x. --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 746ac17f..5075323a 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "3.17", + "version": "3.18", "publicReleaseRefSpec": [ "^refs/heads/main$" ], From 55b7a0d733bf237e090e5cddc8ce5fbbc3434283 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 05:59:29 +0000 Subject: [PATCH 2/3] Bump the nuget-deps group with 3 updates (#730) Bumps csharpier from 1.2.6 to 1.3.0 Bumps InsaneGenius.Utilities from 3.4.3 to 3.4.18 Bumps ptr727.LanguageTags from 1.2.51 to 1.2.54 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: InsaneGenius.Utilities dependency-version: 3.4.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: ptr727.LanguageTags dependency-version: 1.2.54 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .config/dotnet-tools.json | 2 +- Directory.Packages.props | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index c6574309..efeff642 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.2.6", + "version": "1.3.0", "commands": [ "csharpier" ], diff --git a/Directory.Packages.props b/Directory.Packages.props index b17e5330..6feb1424 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,10 +3,10 @@ - + - + From a3a1c591962e5d966e8a85b06ededadf46028705 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Mon, 8 Jun 2026 09:34:54 -0700 Subject: [PATCH 3/3] Adopt shared markdownlint config (#732) Carry the template's .markdownlint-cli2.jsonc verbatim so the davidanson IDE extension and CLI markdownlint-cli2 apply the same rules, and add jsonc to the .editorconfig JSON glob so the config file is CRLF-governed. Existing docs already pass cleanly (0 errors). Realigns with ptr727/ProjectTemplate. Part of #731. --- .editorconfig | 2 +- .markdownlint-cli2.jsonc | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .markdownlint-cli2.jsonc diff --git a/.editorconfig b/.editorconfig index c218e00a..d1399cd0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -37,7 +37,7 @@ end_of_line = crlf indent_size = 2 # Json files -[*.json] +[*.{json,jsonc}] end_of_line = crlf # Linux scripts diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 00000000..c6a57141 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,14 @@ +{ + "config": { + // Prose paragraphs and data-heavy tables/URLs are intentionally long; + // reflowing at 80 cols hurts readability and churns diffs. + "MD013": false, + // Inline HTML is used for reference-link section dividers. + "MD033": false, + // Require fenced code blocks over the legacy 4-space-indented style. + "MD046": { "style": "fenced" }, + // Wide tables are intentional where wrapping cells breaks GitHub rendering. + "MD060": false + }, + "gitignore": true +}