Skip to content

Commit 2fcd6b6

Browse files
authored
Merge pull request #7 from dorssel/prepare_release
Prepare release
2 parents ac3d7a5 + 5e64c75 commit 2fcd6b6

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

Example/Example.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ SPDX-License-Identifier: MIT
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
1819
</ItemGroup>
1920

2021
<ItemGroup>

Example/Model.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//
33
// SPDX-License-Identifier: MIT
44

5+
using System.ComponentModel.DataAnnotations;
56
using Dorssel.EntityFrameworkCore;
67
using Microsoft.EntityFrameworkCore;
7-
using System.ComponentModel.DataAnnotations;
88

99
namespace Example;
1010

GitVersion.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44

55
---
66
assembly-file-versioning-format: '{Major}.{Minor}.{Patch}.{env:GITHUB_RUN_NUMBER ?? 0}'
7+
next-version: 8.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SPDX-License-Identifier: MIT
1313
[![REUSE status](https://api.reuse.software/badge/github.com/dorssel/dotnet-ef-sqlite-timestamp)](https://api.reuse.software/info/github.com/dorssel/dotnet-ef-sqlite-timestamp)
1414
[![NuGet](https://img.shields.io/nuget/v/Dorssel.EntityFrameworkCore.Sqlite.Timestamp?logo=nuget)](https://www.nuget.org/packages/Dorssel.EntityFrameworkCore.Sqlite.Timestamp)
1515

16-
Extension for Entity Framework (EF) Core that adds support for SQLite row versioning (`[Timestamp]` attribute).
16+
Extension for Entity Framework (EF) Core 8.0 that adds support for SQLite row versioning (`[Timestamp]` attribute).
1717

1818
The implementation is for AnyCPU, and works on all platforms.
1919

SqliteTimestamp/SqliteTimestamp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SPDX-License-Identifier: MIT
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" VersionOverride="8.0.0" />
2626
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
2727
</ItemGroup>
2828

SqliteTimestamp/SqliteTimestampMigrationsSqlGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
//
33
// SPDX-License-Identifier: MIT
44

5+
using Microsoft.EntityFrameworkCore;
56
using Microsoft.EntityFrameworkCore.Metadata;
6-
using Microsoft.EntityFrameworkCore.Migrations.Operations;
77
using Microsoft.EntityFrameworkCore.Migrations;
8-
using Microsoft.EntityFrameworkCore;
8+
using Microsoft.EntityFrameworkCore.Migrations.Operations;
99

1010
namespace Dorssel.EntityFrameworkCore.Migrations;
1111

SqliteTimestamp/TimestampToLongConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
//
33
// SPDX-License-Identifier: MIT
44

5-
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
65
using System.Buffers.Binary;
6+
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
77

88
namespace Dorssel.EntityFrameworkCore.Storage.ValueConversion;
99

0 commit comments

Comments
 (0)