Skip to content

Commit 090fe46

Browse files
committed
Version 6.0.0
1 parent 7a62021 commit 090fe46

File tree

6 files changed

+26
-24
lines changed

6 files changed

+26
-24
lines changed

BenchmarkPostgreSql/BenchmarkPostgreSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ItemGroup>
1111
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
1212
<PackageReference Include="BenchmarkDotNet.Annotations" Version="0.13.8" />
13-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" />
13+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

DataLayer/DataLayer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
88
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
9-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0-rc.2.23480.1" />
9+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
1212
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1313
</ItemGroup>
1414

ReleaseNotes.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Release notes
22

3-
## 8.0.0-rc2-0002
43

5-
- New version to support NET 8 rc2 - now supports NET 6, 7, and 8
4+
## 6.0.0
5+
6+
- New version to support NET 8 - now supports NET 6, 7, and 8
67

78
## 8.0.0-rc2-0001
89

@@ -12,10 +13,6 @@
1213

1314
- First build using NET 8-rc1
1415

15-
## 6.0.0
16-
17-
- Updated to support NET 7 and NET 8
18-
1916
## 5.3.0
2017

2118
- Updated to support NET 7 - thanks to GitHub user @chrisbbe - see PR #54

Test/Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77

88
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0-rc.2.23480.1" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
1212
<PackageReference Include="RandomNameGeneratorLibrary" Version="1.2.2" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
1414
<PackageReference Include="xunit" Version="2.5.0" />

Test/UnitTests/TestDataLayer/TestEnsureCleanPostgreSql.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ public void TestWipeDataDatabase1Ok()
124124
public void TestWipeDataDatabase2Ok()
125125
{
126126
//SETUP
127+
//Test code to to make PostgreSql version 12 work.
128+
//var connectionString = this.GetUniquePostgreSqlConnectionString();
129+
//var options = this.CreatePostgreSqlUniqueMethodOptions<DbContext2>(builder =>
130+
// builder.UseNpgsql(connectionString,
131+
// o => o.SetPostgresVersion(12, 0)));
127132
var options = this.CreatePostgreSqlUniqueMethodOptions<DbContext2>();
128133
using (var context = new DbContext2(options))
129134
{

TestSupport/TestSupport.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
</PropertyGroup>
77

88
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
9-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.2.23480.1" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.2.23480.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0-rc.2.23480.1" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.0-rc.2.23480.1">
9+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.0">
1313
<PrivateAssets>all</PrivateAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
17-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0-rc.2.23479.6" />
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.2.23479.6" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
17+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1919
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.1" />
20-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" />
20+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
2121
<PackageReference Include="xunit.assert" Version="2.5.0" />
2222
<PackageReference Include="xunit.core" Version="2.5.0" />
2323
</ItemGroup>
@@ -60,15 +60,15 @@
6060

6161
<PropertyGroup>
6262
<PackageId>EfCore.TestSupport</PackageId>
63-
<PackageVersion>6.0.0-rc2-0002</PackageVersion>
63+
<PackageVersion>6.0.0</PackageVersion>
6464
<Version>6.0.0</Version>
6565
<AssemblyVersion>6.0.0.0</AssemblyVersion>
6666
<FileVersion>6.0.0.0</FileVersion>
6767
<Authors>Jon P Smith</Authors>
6868
<Description>Useful tools when unit testing applications that use Entity Framework Core. See readme file on github.</Description>
6969
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
7070
<PackageReleaseNotes>
71-
- New version to support NET 8 rc2 - now supports NET 6, 7, and 8
71+
- New version to support NET 8 - now supports NET 6, 7, and 8
7272
</PackageReleaseNotes>
7373
<Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright>
7474
<PackageTags>Entity Framework Core, xUnit</PackageTags>

0 commit comments

Comments
 (0)