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..028a11c 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 @@ -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 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