Skip to content

Commit

Permalink
Fix CoreDistributedCache.Memory package description
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericDelaporte committed Apr 3, 2018
1 parent 66ef76c commit f76d167
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Product>NHibernate.Caches.CoreDistributedCache.Memory</Product>
<Title>NHibernate.Caches.CoreDistributedCache.Memory</Title>
<Description>Memory cache provider for NHibernate using .Net Core IDistributedCache (Microsoft.Extensions.Caching.Redis).
<Description>Memory cache provider for NHibernate using .Net Core IDistributedCache (Microsoft.Extensions.Caching.Memory).
Meant for testing purpose, consider NHibernate.Caches.CoreMemoryCache for other usages.</Description>
<!-- Targeting net461 explicitly in order to avoid https://github.com/dotnet/standard/issues/506 for net461 consumers-->
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion NHibernate.Caches.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">3</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch>
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>

<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 5.3.0.{build}
version: 5.3.1.{build}
image: Visual Studio 2017
configuration:
- Debug
Expand Down
2 changes: 1 addition & 1 deletion buildcommon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<!-- This is used only for build folder -->
<!-- TODO: Either remove or refactor to use NHibernate.props -->
<property name="project.version" value="5.3.0" overwrite="false" />
<property name="project.version" value="5.3.1" overwrite="false" />

<!-- named project configurations -->
<target name="set-debug-project-configuration" description="Perform a 'debug' build">
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ It's recommended to research for a while before deciding which one is better for

## Notes

#### Build 5.3.1 for NHibernate 5.0.0/5.1.0

* Bug
* #37 Fix CoreDistributedCache.Memory package description

#### Build 5.3.0 for NHibernate 5.0.0/5.1.0

NHibernate 5.1.0 is targeted by new cache providers.
Expand Down

0 comments on commit f76d167

Please sign in to comment.