Skip to content

Commit

Permalink
Version 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JonPSmith committed Nov 15, 2022
1 parent 16390d0 commit 5cfd529
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Benchmarking/Benchmarking.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="EfCore.TestSupport" Version="5.2.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" />
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.11" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
Expand Down
2 changes: 1 addition & 1 deletion DataLayer/DataLayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.11" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
</ItemGroup>

Expand Down
15 changes: 8 additions & 7 deletions GenericServices/GenericServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="AutoMapper" Version="12.0.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
</ItemGroup>

Expand All @@ -28,10 +28,10 @@

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>5.1.1</PackageVersion>
<Version>5.1.1</Version>
<AssemblyVersion>5.1.1.0</AssemblyVersion>
<FileVersion>5.1.1.0</FileVersion>
<PackageVersion>5.2.0</PackageVersion>
<Version>5.2.0</Version>
<AssemblyVersion>5.2.0.0</AssemblyVersion>
<FileVersion>5.2.0.0</FileVersion>
<Company>Selective Analytics</Company>
<Authors>Jon P Smith</Authors>
<PackageId>EfCore.GenericServices</PackageId>
Expand All @@ -43,7 +43,8 @@
<RepositoryType>GuHub</RepositoryType>
<PackageTags>Entity Framework Core, ASP.NET Core</PackageTags>
<PackageReleaseNotes>
Bug fix: EF Core 6 version failed on owned type because defintion changed - see issue #60
- Updated to support NET 7 - thanks to GitHub user @Jerrill - see PR #66
- Updates AutoMapper to version 12.0.0 - thanks to GitHub user @Jerrill - see PR #66
</PackageReleaseNotes>
<PackageIcon>GenericServicesNuGetIcon128.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ This library helps you quickly code Create, Read, Update and Delete (CRUD) acces

The EfCore.GenericServices library is available on [NuGet as EfCore.GenericServices](https://www.nuget.org/packages/EfCore.GenericServices/) and is an open-source library under the MIT licence. See [ReleaseNotes](https://github.com/JonPSmith/EfCore.GenericServices/blob/master/ReleaseNotes.md) for details of changes and information on each version of EfCore.GenericServices.

NOTE: Version 5.1.0 and above of this library supports multiple versions of EF Core 5. At the moment version 5.1.0 supports EF Core 5.10 and EF Core 6.
NOTE: Version 5.1.0 and above of this library supports multiple versions of EF Core 5.

Version 5.1.0 and above supports EF Core 5.10 and EF Core 6.0
Version 5.2.0 and above supports EF Core 5.10, EF Core 6.0 and EF Core 7.0

_If are using the older versions of EF Core you should use [EfCore.GenericServices, version 3.2.2](https://www.nuget.org/packages/EfCore.GenericServices/3.2.2)._

Expand Down
5 changes: 5 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## 5.2.0

- Updated to support NET 7 - thanks to GitHub user @Jerrill - see PR #66
- Updates AutoMapper to version 12.0.0 - thanks to GitHub user @Jerrill - see PR #66

## 5.1.1

- Bug fix: EF Core 6 version failed on owned type because defintion changed - see issue #60
Expand Down
12 changes: 6 additions & 6 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="AutoMapper" Version="12.0.0" />
<PackageReference Include="EfCore.TestSupport" Version="5.2.2" />
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.10" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.1.0" />
Expand All @@ -23,10 +23,10 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="AutoMapper" Version="12.0.0" />
<PackageReference Include="EfCore.TestSupport" Version="5.2.2" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.0.0-preview3.21293.2" />
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.11" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.1.0" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
Expand All @@ -39,7 +39,7 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
<PackageReference Include="AutoMapper" Version="12.0.0" />
<PackageReference Include="EfCore.TestSupport" Version="5.2.2" />
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.1" />
Expand Down

0 comments on commit 5cfd529

Please sign in to comment.