From fb9ccd0d8d49499442454722f9536ea3e31efc32 Mon Sep 17 00:00:00 2001 From: Pierre Chalamet Date: Sun, 21 Jun 2026 12:27:23 +0200 Subject: [PATCH 1/2] Update .NET SDK to 10.0.301 --- .github/workflows/ci-pr.yml | 2 +- .github/workflows/on-push-branch.yml | 2 +- .github/workflows/on-push-tag.yml | 2 +- .github/workflows/on-release-published.yml | 2 +- README.md | 2 +- global.json | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index c133472..277887d 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -33,7 +33,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 10.0.100 + dotnet-version: 10.0.301 - name: Restore run: dotnet restore FSharp.MongoDB.sln diff --git a/.github/workflows/on-push-branch.yml b/.github/workflows/on-push-branch.yml index c5b71bc..573da1f 100644 --- a/.github/workflows/on-push-branch.yml +++ b/.github/workflows/on-push-branch.yml @@ -29,7 +29,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 10.0.100 + dotnet-version: 10.0.301 - name: Restore run: dotnet restore FSharp.MongoDB.sln diff --git a/.github/workflows/on-push-tag.yml b/.github/workflows/on-push-tag.yml index 8bacfd9..af85ca1 100644 --- a/.github/workflows/on-push-tag.yml +++ b/.github/workflows/on-push-tag.yml @@ -24,7 +24,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 10.0.100 + dotnet-version: 10.0.301 - name: Extract version suffix run: | diff --git a/.github/workflows/on-release-published.yml b/.github/workflows/on-release-published.yml index 5b56ed6..8ae6849 100644 --- a/.github/workflows/on-release-published.yml +++ b/.github/workflows/on-release-published.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 10.0.100 + dotnet-version: 10.0.301 - name: Download GitHub release artifacts uses: robinraju/release-downloader@v1.11 diff --git a/README.md b/README.md index 2ca4334..db5b8d0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Repository origins are: This project targets `.net 8`, `.net 9`, `.net 10` and `netstandard2.1` ([compatible runtimes](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-1#select-net-standard-version)) -:warning: NRT support starts with `.net sdk 9.0.200`. F# compiler in .net sdk 9.0.10x does not set correctly nullable attributes on F# types. NRT are not supported on `netstandard2.1`. Anyway, it's better to use latest `.net sdk 10.0.100` at least. +:warning: NRT support starts with `.net sdk 9.0.200`. F# compiler in .net sdk 9.0.10x does not set correctly nullable attributes on F# types. NRT are not supported on `netstandard2.1`. Anyway, it's better to use latest `.net sdk 10.0.301` at least. ## Contributing * If you have a question about the library, then create an [issue][issues] with the `question` label. diff --git a/global.json b/global.json index afb001f..c80d610 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "10.0.100" + "version": "10.0.301" } - } \ No newline at end of file + } From 6cad8efcb4c540c32326fb899895465182ff4ece Mon Sep 17 00:00:00 2001 From: Pierre Chalamet Date: Sun, 21 Jun 2026 12:28:24 +0200 Subject: [PATCH 2/2] Update changelog for SDK bump --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0537a8d..455d139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to FSharp.MongoDB are documented in this file. ## [Unreleased] +- Updated the repository and GitHub Actions workflows to use the .NET SDK `10.0.301` baseline. - Restored the isomorphic serialization test coverage to guard C# and F# BSON parity again. ## [0.4.0-beta]