Skip to content

Commit 5c09c5f

Browse files
PanyushkinDPanyushkinD
authored andcommitted
Update version
1 parent 7cab79e commit 5c09c5f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

EFCore.CommonTools/EntityFrameworkCore.CommonTools.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<PackageId>EntityFrameworkCore.CommonTools</PackageId>
6-
<PackageVersion>2.0.1</PackageVersion>
6+
<PackageVersion>2.0.2</PackageVersion>
77
<Description>An extension for EntityFrameworkCore that provides Auditing, Concurrency Checks, JSON Complex Types and writing history to Transaction Log.</Description>
88
<Authors>Dmitry Panyushkin</Authors>
99
<Company />
@@ -13,7 +13,7 @@
1313
<RepositoryUrl>https://github.com/gnaeus/EntityFramework.CommonTools.git</RepositoryUrl>
1414
<RepositoryType>git</RepositoryType>
1515
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
16-
<PackageReleaseNotes>.AsExpandable() works with bound lambda arguments</PackageReleaseNotes>
16+
<PackageReleaseNotes>context.Update(entity) does not reset CreatedUtc and CreatorUserId</PackageReleaseNotes>
1717
<Copyright>Copyright © Dmitry Panyushkin 2017</Copyright>
1818
<PackageTags>EF EFCore EntityFrameworkCore EntityFramework Entity Framework ChangeTracking Change Tracking Auditing Audit TransactionLog Transaction Log ComplexType Complex Type JSON</PackageTags>
1919
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>

EntityFramework.CommonTools/EntityFramework.CommonTools.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>EntityFramework.CommonTools</id>
5-
<version>2.0.1</version>
5+
<version>2.0.2</version>
66
<summary>Auditing, Concurrency Checks, JSON properties and Transaction Logs for EntityFramework</summary>
77
<description>An extension for EntityFramework that provides Auditing, Concurrency Checks, storing complex types as JSON and storing history of all changes from DbContext to Transaction Log.</description>
88
<authors>Dmitry Panyushkin</authors>
@@ -11,7 +11,7 @@
1111
<licenseUrl>https://github.com/gnaeus/EntityFramework.CommonTools/blob/master/LICENSE</licenseUrl>
1212
<iconUrl>https://raw.githubusercontent.com/gnaeus/EntityFramework.CommonTools/master/icon.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<releaseNotes>.AsExpandable() works with bound lambda arguments</releaseNotes>
14+
<releaseNotes>context.Entry(entity).State = EntityState.Modified does not reset CreatedUtc and CreatorUserId</releaseNotes>
1515
<copyright>Copyright © Dmitry Panyushkin 2017</copyright>
1616
<tags>EF EntityFramework Entity Framework ChangeTracking Change Tracking Auditing Audit TransactionLog Transaction Log ComplexType Complex Type JSON</tags>
1717
<dependencies>

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,11 @@ All notable changes to this project will be documented in this file.
817817
The format is based on [Keep a Changelog](http://keepachangelog.com/)
818818
and this project adheres to [Semantic Versioning](http://semver.org/).
819819

820+
## [2.0.2] - 2018-05-10
821+
### Fixed
822+
- `context.Update(entity)` does not reset `ICreationTrackable.CreatedUtc`
823+
and `ICreationAuditable.CreatorUserId` to empty values [#4](https://github.com/gnaeus/EntityFramework.CommonTools/issues/4)
824+
820825
## [2.0.1] - 2018-03-27
821826
### Fixed
822827
- `.AsExpandable()` works with bound lambda arguments
@@ -860,6 +865,7 @@ public interface IFullAuditableV1 : IFullTrackable,
860865
### Added
861866
Initial project version.
862867

868+
[2.0.2]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/2.0.1...2.0.2
863869
[2.0.1]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/2.0.0...2.0.1
864870
[2.0.0]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/1.0.0...2.0.0
865871
[1.0.0]: https://github.com/gnaeus/EntityFramework.CommonTools/tree/1.0.0

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.0.1.{build}
1+
version: 2.0.2.{build}
22

33
image: Visual Studio 2017
44

0 commit comments

Comments
 (0)