Skip to content

Commit 01c6941

Browse files
committed
Update release information.
1 parent 48aaa31 commit 01c6941

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
The following versions of MySqlConnector, EF Core, .NET (Core), .NET Standard and .NET Framework are compatible with published releases of `Pomelo.EntityFrameworkCore.MySql`:
1515

16-
Release | Branch | MySqlConnector | EF Core | .NET (Core) | .NET Standard | .NET Framework
17-
--- | --- |--------------------| :---: | :---: | :---: | :---:
18-
[6.0.1](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/6.0.1) | [master](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/master) | >= 2.1.2 | 6.0.x | 6.0+ | - | -
16+
Release | Branch | MySqlConnector | EF Core | .NET (Core) | .NET Standard | .NET Framework
17+
--- |--------------------------------------------------------------------------------------------------|--------------------| :---: | :---: | :---: | :---:
18+
[6.0.2](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/6.0.2) | [6.0-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/6.0-maint) | >= 2.1.2 | 6.0.x | 6.0+ | - | -
1919
[5.0.4](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/5.0.4) | [5.0-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/5.0-maint) | >= 1.3.13 | 5.0.x | 3.0+ | 2.1 | -
2020
[3.2.7](https://www.nuget.org/packages/Pomelo.EntityFrameworkCore.MySql/3.2.7) | [3.2-maint](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/tree/3.2-maint) | >= 0.69.10 < 1.0.0 | 3.1.x | 2.0+ | 2.0 | 4.6.1+
2121

@@ -34,6 +34,8 @@ Currently supported versions are:
3434

3535
- MySQL 8.0
3636
- MySQL 5.7
37+
- MariaDB 10.8
38+
- MariaDB 10.7
3739
- MariaDB 10.6
3840
- MariaDB 10.5
3941
- MariaDB 10.4
@@ -43,7 +45,7 @@ Currently supported versions are:
4345

4446
Milestone | Status | Release Date
4547
----------|--------|-------------
46-
6.0.1 | Released | 2022-01-22
48+
6.0.2 | Released | 2022-07-24
4749
5.0.4 | Released | 2022-01-22
4850
3.2.7 | Released | 2021-10-04
4951

@@ -68,7 +70,7 @@ To use nightly builds from our Azure DevOps feed, add a `NuGet.config` file to y
6870
Ensure that your `.csproj` file contains the following reference:
6971

7072
```xml
71-
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.1" />
73+
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
7274
```
7375

7476
### 2. Services Configuration
@@ -87,7 +89,7 @@ public class Startup
8789
// Use 'MariaDbServerVersion' for MariaDB.
8890
// Alternatively, use 'ServerVersion.AutoDetect(connectionString)'.
8991
// For common usages, see pull request #1233.
90-
var serverVersion = new MySqlServerVersion(new Version(8, 0, 27));
92+
var serverVersion = new MySqlServerVersion(new Version(8, 0, 29));
9193

9294
// Replace 'YourDbContext' with the name of your own DbContext derived class.
9395
services.AddDbContext<YourDbContext>(

0 commit comments

Comments
 (0)