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, 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/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 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