From 2118598bd2d0ae3ed4e88e98d534c9582658a5d1 Mon Sep 17 00:00:00 2001 From: Daniil Tolstoukhov Date: Tue, 19 Nov 2024 12:51:12 +0400 Subject: [PATCH 1/2] dotnet 8, bump gremit --- .config/dotnet-tools.json | 2 +- .github/workflows/actions.yml | 2 +- CHANGELOG.md | 3 +++ GroBuf.Tests/GroBuf.Tests.csproj | 2 +- GroBuf/GroBuf.csproj | 2 +- global.json | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index fc0fb8b..1c54e80 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "jetbrains.resharper.globaltools": { - "version": "2022.3.2", + "version": "2023.3.1", "commands": [ "jb" ] diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4589a17..9e4cd2c 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -4,7 +4,7 @@ on: - "**/*.md" pull_request: env: - DOTNET_VERSION: 7.0.x + DOTNET_VERSION: 8.0.x jobs: test: runs-on: windows-2019 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0485287..4603517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## v1.10.0 - 2024.11.19 +- Add net8.0 support +- Update GrEmit dependency to v3.5.1 ## v1.9.2 - 2023.04.24 - Add net7 support (PR [#32](https://github.com/skbkontur/GroBuf/pull/32)) diff --git a/GroBuf.Tests/GroBuf.Tests.csproj b/GroBuf.Tests/GroBuf.Tests.csproj index e2dff68..edf4370 100644 --- a/GroBuf.Tests/GroBuf.Tests.csproj +++ b/GroBuf.Tests/GroBuf.Tests.csproj @@ -2,7 +2,7 @@ false - net48;netcoreapp3.1;net6.0;net7.0 + net48;netcoreapp3.1;net6.0;net8.0 diff --git a/GroBuf/GroBuf.csproj b/GroBuf/GroBuf.csproj index b50dc9a..b1a5098 100644 --- a/GroBuf/GroBuf.csproj +++ b/GroBuf/GroBuf.csproj @@ -9,7 +9,7 @@ - + diff --git a/global.json b/global.json index ece2da4..92426f3 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.0", + "version": "8.0.10", "rollForward": "latestFeature" } } \ No newline at end of file From 0d97ace76c8310ba57afc29a9a2ab77130845e34 Mon Sep 17 00:00:00 2001 From: Daniil Tolstoukhov Date: Tue, 19 Nov 2024 13:04:41 +0400 Subject: [PATCH 2/2] add missing dotnet versions --- .github/workflows/actions.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 9e4cd2c..028a11c 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -16,7 +16,10 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: ${{ env.DOTNET_VERSION }} + dotnet-version: | + ${{ env.DOTNET_VERSION }} + 3.1.x + 6.0.x - name: Install dependencies run: dotnet restore ./GroBuf.sln --verbosity minimal && dotnet tool restore