diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06e9cf3..91bc686 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8'] + efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8', '9.0.1'] env: EntityFrameworkCoreVersion: ${{matrix.efcore}} steps: @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-dotnet@v1 - name: Generate NuGet Packages run: dotnet pack --configuration Release --output nupkg - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: success() && github.ref == 'refs/heads/main' with: name: nupkg diff --git a/Directory.Build.props b/Directory.Build.props index d5f2adf..f7d55bc 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -19,7 +19,4 @@ true true - - - diff --git a/Directory.Packages.props b/Directory.Packages.props index 08e5f65..1cda610 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -4,21 +4,20 @@ true - - + + - - - - + + + - - - - - - + + + + + + diff --git a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj index cd8feeb..c1b0202 100644 --- a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj +++ b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj @@ -1,7 +1,7 @@ - net8.0 - 11.0 + net9.0 + 13.0 enable enable false diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index adb1e6b..436afe7 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,13 +1,13 @@ - net8.0 - 11.0 + netstandard2.0;net7.0;net8.0;net9.0 + 13.0 enable enable Interoperability between Funcky and EF Core Interoperability between Funcky and EF Core Functional Monad EFCore EntityFramework - 1.2.0 + 1.3.0 readme.md diff --git a/changelog.md b/changelog.md index 639ca8b..99026c6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,8 @@ # Changelog + +## 1.3.0 +* Add support for Entity Framework Core 8.0 and 9.0. + ## 1.1.0 * Add support for Entity Framework Core 7.0. diff --git a/global.json b/global.json index d80ba68..0d837a8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.401", + "version": "9.0.101", "rollForward": "latestFeature" } }