Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
3 changes: 0 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,4 @@
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup Label="Deterministic Builds and Source Link">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
</ItemGroup>
</Project>
23 changes: 11 additions & 12 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,20 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup Label="Runtime Dependencies">
<PackageVersion Include="Funcky" Version="[3.0.0, 4)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="[3.1.25, 9)" />
<PackageVersion Include="Funcky" Version="[3.5.0, 4)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="[3.1.25, 10)" />
</ItemGroup>
<ItemGroup Label="Build Dependencies">
<PackageVersion Include="Funcky.Analyzers" Version="1.1.0" />
<PackageVersion Include="Messerli.CodeStyle" Version="2.1.2" />
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.3" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="Funcky.Analyzers" Version="1.4.0" />
<PackageVersion Include="Messerli.CodeStyle" Version="2.3.1" />
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4" />
</ItemGroup>
<ItemGroup Label="Test Dependencies">
<PackageVersion Include="Funcky.Xunit" Version="2.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(EntityFrameworkCoreVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="[3.1.25, 9)" Condition="'$(EntityFrameworkCoreVersion)' == ''" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageVersion Include="xunit" Version="2.4.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageVersion Include="Funcky.Xunit" Version="2.1.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(EntityFrameworkCoreVersion)" Condition="'$(EntityFrameworkCoreVersion)' != ''"/>
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="[3.1.25, 10)" Condition="'$(EntityFrameworkCoreVersion)' == ''" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>13.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
Expand Down
6 changes: 3 additions & 3 deletions Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<TargetFrameworks>netstandard2.0;net7.0;net8.0;net9.0</TargetFrameworks>
<LangVersion>13.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Product>Interoperability between Funcky and EF Core</Product>
<Description>Interoperability between Funcky and EF Core</Description>
<PackageTags>Functional Monad EFCore EntityFramework</PackageTags>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Label="Symbols">
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.401",
"version": "9.0.101",
"rollForward": "latestFeature"
}
}
Loading