Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
PanyushkinD authored and PanyushkinD committed May 10, 2018
1 parent 7cab79e commit 5c09c5f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions EFCore.CommonTools/EntityFrameworkCore.CommonTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>EntityFrameworkCore.CommonTools</PackageId>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>2.0.2</PackageVersion>
<Description>An extension for EntityFrameworkCore that provides Auditing, Concurrency Checks, JSON Complex Types and writing history to Transaction Log.</Description>
<Authors>Dmitry Panyushkin</Authors>
<Company />
Expand All @@ -13,7 +13,7 @@
<RepositoryUrl>https://github.com/gnaeus/EntityFramework.CommonTools.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>.AsExpandable() works with bound lambda arguments</PackageReleaseNotes>
<PackageReleaseNotes>context.Update(entity) does not reset CreatedUtc and CreatorUserId</PackageReleaseNotes>
<Copyright>Copyright © Dmitry Panyushkin 2017</Copyright>
<PackageTags>EF EFCore EntityFrameworkCore EntityFramework Entity Framework ChangeTracking Change Tracking Auditing Audit TransactionLog Transaction Log ComplexType Complex Type JSON</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>EntityFramework.CommonTools</id>
<version>2.0.1</version>
<version>2.0.2</version>
<summary>Auditing, Concurrency Checks, JSON properties and Transaction Logs for EntityFramework</summary>
<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>
<authors>Dmitry Panyushkin</authors>
Expand All @@ -11,7 +11,7 @@
<licenseUrl>https://github.com/gnaeus/EntityFramework.CommonTools/blob/master/LICENSE</licenseUrl>
<iconUrl>https://raw.githubusercontent.com/gnaeus/EntityFramework.CommonTools/master/icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>.AsExpandable() works with bound lambda arguments</releaseNotes>
<releaseNotes>context.Entry(entity).State = EntityState.Modified does not reset CreatedUtc and CreatorUserId</releaseNotes>
<copyright>Copyright © Dmitry Panyushkin 2017</copyright>
<tags>EF EntityFramework Entity Framework ChangeTracking Change Tracking Auditing Audit TransactionLog Transaction Log ComplexType Complex Type JSON</tags>
<dependencies>
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.0.2] - 2018-05-10
### Fixed
- `context.Update(entity)` does not reset `ICreationTrackable.CreatedUtc`
and `ICreationAuditable.CreatorUserId` to empty values [#4](https://github.com/gnaeus/EntityFramework.CommonTools/issues/4)

## [2.0.1] - 2018-03-27
### Fixed
- `.AsExpandable()` works with bound lambda arguments
Expand Down Expand Up @@ -860,6 +865,7 @@ public interface IFullAuditableV1 : IFullTrackable,
### Added
Initial project version.

[2.0.2]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/gnaeus/EntityFramework.CommonTools/compare/1.0.0...2.0.0
[1.0.0]: https://github.com/gnaeus/EntityFramework.CommonTools/tree/1.0.0
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.0.1.{build}
version: 2.0.2.{build}

image: Visual Studio 2017

Expand Down

0 comments on commit 5c09c5f

Please sign in to comment.