From c8f1223e1efc6422eb7376457d3befa233bc08dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Wed, 11 Dec 2024 17:57:18 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=90=9B=20Fix=20CI=20with=20dotnet=209?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/create-tag-and-deploy-on-merge-to-main.yml | 2 +- .github/workflows/depoloy-on-tag.yml | 2 +- .vscode/launch.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-tag-and-deploy-on-merge-to-main.yml b/.github/workflows/create-tag-and-deploy-on-merge-to-main.yml index 74abb318..243278e8 100644 --- a/.github/workflows/create-tag-and-deploy-on-merge-to-main.yml +++ b/.github/workflows/create-tag-and-deploy-on-merge-to-main.yml @@ -77,7 +77,7 @@ jobs: - name: 🛠️ Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' - name: 📥 Restore dependencies run: dotnet restore $SOLUTION diff --git a/.github/workflows/depoloy-on-tag.yml b/.github/workflows/depoloy-on-tag.yml index e49af90e..cd33dbf4 100644 --- a/.github/workflows/depoloy-on-tag.yml +++ b/.github/workflows/depoloy-on-tag.yml @@ -23,7 +23,7 @@ jobs: - name: 🛠️ Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' - name: 📥 Restore dependencies run: dotnet restore $SOLUTION diff --git a/.vscode/launch.json b/.vscode/launch.json index e075bda6..44ab919a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/Examples.BlazorServer/bin/Debug/net8.0/Examples.BlazorServer.dll", + "program": "${workspaceFolder}/Examples.BlazorServer/bin/Debug/net9.0/Examples.BlazorServer.dll", "args": [], "cwd": "${workspaceFolder}/Examples.BlazorServer", "stopAtEntry": false, From f990b14e1529eada983b69d852253237dfb61934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Wed, 11 Dec 2024 17:57:26 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog=20for=200?= =?UTF-8?q?.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ NEW_CHANGELOG.md | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a831dbb8..ecb22d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.1 - 2024-12-11 + +### 🐛 Fix a bug + +- Fix CI with dotnet 9 + ## 0.9.0 - 2024-12-11 No change - new release to run the CI again after disabling CodeQL which fails with net9.0 diff --git a/NEW_CHANGELOG.md b/NEW_CHANGELOG.md index cb2e993b..e6716438 100644 --- a/NEW_CHANGELOG.md +++ b/NEW_CHANGELOG.md @@ -1 +1,3 @@ -No change - new release to run the CI again after disabling CodeQL which fails with net9.0 +### 🐛 Fix a bug + +- Fix CI with dotnet 9 From 59f7a04431f21617614d5c97dd36a12b0881128c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Wed, 11 Dec 2024 17:57:26 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=200.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CodeMirror6/CodeMirror6.csproj | 2 +- Examples.BlazorServer/Examples.BlazorServer.csproj | 2 +- .../Examples.BlazorServerInteractive.csproj | 2 +- Examples.BlazorWasm/Examples.BlazorWasm.csproj | 2 +- Examples.Common/Examples.Common.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CodeMirror6/CodeMirror6.csproj b/CodeMirror6/CodeMirror6.csproj index 2d94e592..4db182e7 100644 --- a/CodeMirror6/CodeMirror6.csproj +++ b/CodeMirror6/CodeMirror6.csproj @@ -9,7 +9,7 @@ GaelJ.BlazorCodeMirror6 true GaelJ.BlazorCodeMirror6 - 0.9.0 + 0.9.1 true snupkg true diff --git a/Examples.BlazorServer/Examples.BlazorServer.csproj b/Examples.BlazorServer/Examples.BlazorServer.csproj index 6a5a7ec5..382dfb29 100644 --- a/Examples.BlazorServer/Examples.BlazorServer.csproj +++ b/Examples.BlazorServer/Examples.BlazorServer.csproj @@ -4,7 +4,7 @@ enable false enable - 0.9.0 + 0.9.1 diff --git a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj index b861fe4f..777cbc72 100644 --- a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj +++ b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj @@ -4,7 +4,7 @@ enable enable false - 0.9.0 + 0.9.1 diff --git a/Examples.BlazorWasm/Examples.BlazorWasm.csproj b/Examples.BlazorWasm/Examples.BlazorWasm.csproj index 06cb768b..39ac1484 100644 --- a/Examples.BlazorWasm/Examples.BlazorWasm.csproj +++ b/Examples.BlazorWasm/Examples.BlazorWasm.csproj @@ -4,7 +4,7 @@ enable enable false - 0.9.0 + 0.9.1 diff --git a/Examples.Common/Examples.Common.csproj b/Examples.Common/Examples.Common.csproj index e7055a7f..7e6c250c 100644 --- a/Examples.Common/Examples.Common.csproj +++ b/Examples.Common/Examples.Common.csproj @@ -5,7 +5,7 @@ enable enable false - 0.9.0 + 0.9.1