From 4f91df2aaaf977a1d2478b571e221ae5f80a34d0 Mon Sep 17 00:00:00 2001 From: Ruben Schmidmeister <4602612+bash@users.noreply.github.com> Date: Wed, 16 Nov 2022 10:54:07 +0100 Subject: [PATCH 1/2] Allow EF Core 7.0 --- .github/workflows/build.yml | 2 +- Packages.props | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7a1bd7..ee08efb 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'] + efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0'] env: EntityFrameworkCoreVersion: ${{matrix.efcore}} steps: diff --git a/Packages.props b/Packages.props index 3e3a92d..04d4a66 100644 --- a/Packages.props +++ b/Packages.props @@ -2,7 +2,7 @@ - + From c4176dcf31b9f3a8effb325af681a3e17780e7dd Mon Sep 17 00:00:00 2001 From: Ruben Schmidmeister <4602612+bash@users.noreply.github.com> Date: Wed, 16 Nov 2022 10:57:10 +0100 Subject: [PATCH 2/2] Bump version and update changelog --- Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj | 2 +- changelog.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index fb71f9b..2bed365 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -7,7 +7,7 @@ Interoperability between Funcky and EF Core Interoperability between Funcky and EF Core Functional Monad EFCore EntityFramework - 1.0.0 + 1.1.0 readme.md diff --git a/changelog.md b/changelog.md index 74cb0ba..639ca8b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,7 @@ # Changelog +## 1.1.0 +* Add support for Entity Framework Core 7.0. + ## 1.0.0 * Breaking: Updated to Funcky 3.0.0. * Breaking: Add an optional `cancellationToken` parameter to all async `IQueryable` extensions. (polyadic/funcky#433)