Skip to content

Commit

Permalink
Version fixes & bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaferlez committed Apr 10, 2024
1 parent 7e3c487 commit 0c8295f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/Simpleverse.Repository.Db/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public class Entity<TModel, TUpdate, TFilter, TOptions>
IReplaceDb<TModel, TFilter>,
IUpdate<TUpdate, TFilter, TOptions>
where TModel : class, new()
where TFilter : class
where TUpdate : class
where TOptions : DbQueryOptions, new()
{
protected DbRepository Repository { get; }
Expand Down Expand Up @@ -663,6 +665,7 @@ protected void IfChanged<T, R>(T filter, Expression<Func<T, R>> expression, Acti

public class Entity<TModel, TFilter, TOptions> : Entity<TModel, TModel, TFilter, TOptions>
where TModel : class, new()
where TFilter : class
where TOptions : DbQueryOptions, new()
{
public Entity(DbRepository repository, Table<TModel> source)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Dapper, Bulk, Merge, Upsert, Delete, Insert, Update, Repository</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>2.1.0-alpha3</Version>
<Version>2.1.0-alpha4</Version>
<Description>High performance operation for MS SQL Server built for Dapper ORM. Including bulk operations Insert, Update, Delete, Get as well as Upsert both single and bulk.</Description>
<AssemblyVersion>2.1.0.3</AssemblyVersion>
<FileVersion>2.1.0.3</FileVersion>
<AssemblyVersion>2.1.0.4</AssemblyVersion>
<FileVersion>2.1.0.4</FileVersion>
<RepositoryUrl>https://github.com/lukaferlez/Simpleverse.Repository</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedAllSources>true</EmbedAllSources>
Expand Down
6 changes: 3 additions & 3 deletions src/Simpleverse.Repository/Simpleverse.Repository.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Repository</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.1.0-alpha3</Version>
<Version>1.1.0-alpha4</Version>
<Description>Base repository elements.</Description>
<AssemblyVersion>1.1.0.3</AssemblyVersion>
<FileVersion>1.1.0.3</FileVersion>
<AssemblyVersion>1.1.0.4</AssemblyVersion>
<FileVersion>1.1.0.4</FileVersion>
<RepositoryUrl>https://github.com/lukaferlez/Simpleverse.Repository</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
Expand Down

0 comments on commit 0c8295f

Please sign in to comment.