Skip to content

Commit

Permalink
Release 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericDelaporte committed Aug 18, 2019
1 parent 9eaf4d5 commit 83cfb25
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
<PackageReleaseNotes>## Possible breaking change
* The obsolete Microsoft.Extensions.Caching.Redis dependency has been changed for Microsoft.Extensions.Caching.StackExchangeRedis

* Improvement
* #70 - Use non deprecated Redis provider
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This provider is not bound to a specific implementation and require a cache fact
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #68 - Add static region configuration
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #68 - Add static region configuration
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
Expand Down
3 changes: 3 additions & 0 deletions NHibernate.Caches.Common/NHibernate.Caches.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
<DefineConstants>NETFX;$(DefineConstants)</DefineConstants>
Expand All @@ -18,6 +20,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="NHibernate" Version="5.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Content Include="../readme.md">
Expand Down
4 changes: 2 additions & 2 deletions NHibernate.Caches.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">5</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
<VersionMinor Condition="'$(VersionMinor)' == ''">6</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>

<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #68 - Add static region configuration
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
<PackageReleaseNotes>* Bug
* #66 - Issues with custom Regions with RedisCacheProvider
* #62 - StackExchangeRedis fails with "too many results to unpack" with 8000 items

* New feature
* #69 - "Third Level Cache" for Redis

* Improvement
* #71 - Enable batching for StackExchangeRedis by default
* #68 - Add static region configuration
* #64 - Improve StackExchangeRedis LockMany script for DefaultRegionStrategy
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #68 - Add static region configuration
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>* Improvement
* #68 - Add static region configuration
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
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.5.1.{build}
version: 5.6.0.{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.Caches.props -->
<property name="project.version" value="5.5.1" overwrite="false" />
<property name="project.version" value="5.6.0" overwrite="false" />

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

## Notes

#### Build 5.6.0 for NHibernate 5.2.0

##### Possible breaking change
The obsolete Microsoft.Extensions.Caching.Redis dependency has been changed for
Microsoft.Extensions.Caching.StackExchangeRedis, in NHibernate.Caches.CoreDistributedCache.Redis

* Bug
* #66 - Issues with custom Regions with RedisCacheProvider
* #62 - StackExchangeRedis fails with "too many results to unpack" with 8000 items

* New feature
* #69 - "Third Level Cache" for Redis

* Improvement
* #71 - Enable batching for StackExchangeRedis by default
* #70 - Use non deprecated Redis provider
* #68 - Add static region configuration
* #64 - Improve StackExchangeRedis LockMany script for DefaultRegionStrategy
* #60 - Update package format for symbols, license and SourceLink

* Task
* #65 - Update AsyncGenerator to 0.14.0

#### Build 5.5.1 for NHibernate 5.2.0

Re-release in order to have proper release notes in the NuGet packages.
Expand Down

0 comments on commit 83cfb25

Please sign in to comment.