Skip to content

Commit

Permalink
Add doco for v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reisenberger committed Jan 26, 2019
1 parent 62eab65 commit fc5be1b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Polly.Caching.Distributed change log

## 3.0.0
- Allow caching of `default(TResult)`
- Compatible with Polly >= v7

## 2.0.1
- No functional changes
- Indicate compatibility with Polly < v7
Expand Down
2 changes: 1 addition & 1 deletion GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
next-version: 2.0.1
next-version: 3.0.0
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,19 @@ Polly.Caching.Distributed supports .NET Standard 1.1 and .NET Standard 2.0.

## Versions and Dependencies

Polly.Caching.Distributed >=v3.0 requires:

+ [Polly](https://nuget.org/packages/polly) >= v7.0.0.
+ [Microsoft.Extensions.Caching.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Abstractions/) v2.0.2 or above.

Polly.Caching.Distributed >=v2.0 and <v3 requires:

+ [Polly](nuget.org/packages/polly) >= v6.0.1 and <v7.
+ [Polly](https://nuget.org/packages/polly) >= v6.0.1 and <v7.
+ [Microsoft.Extensions.Caching.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Abstractions/) v2.0.2 or above.

Polly.Caching.IDistributedCache <v2.0 requires:

+ [Polly](nuget.org/packages/polly) v5.4.0 or above.
+ [Polly](https://nuget.org/packages/polly) v5.4.0 or above.
+ [Microsoft.Extensions.Caching.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Abstractions/) v1.1.2 or above.


Expand Down Expand Up @@ -129,6 +134,7 @@ For details of changes by release see the [change log](CHANGELOG.md).
* [@seanfarrow](https://github.com/seanfarrow) and [@reisenberger](https://github.com/reisenberger) - Initial caching architecture in the main Polly repo
* [@reisenberger](https://github.com/reisenberger) - `IDistributedCache` implementation
* [@seanfarrow](https://github.com/seanfarrow) - v2.0 update to Signed packages only to correspond with Polly v6.0.1
* [@reisenberger](https://github.com/reisenberger) - Update to Polly v7.0.0

# Instructions for Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Polly.Caching.Distributed")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.1.0")]
[assembly: AssemblyInformationalVersion("2.0.1.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0.0")]
[assembly: CLSCompliant(false)] // Because Microsoft.Extensions.Caching.Memory.IDistributedCache, on which Polly.Caching.IDistributedCache.NetStandard11 depends, is not CLSCompliant.

[assembly: InternalsVisibleTo("Polly.Caching.Distributed.NetStandard11.Specs")]
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Polly.Caching.Distributed")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.1.0")]
[assembly: AssemblyInformationalVersion("2.0.1.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0.0")]
[assembly: CLSCompliant(false)] // Because Microsoft.Extensions.Caching.Memory.IDistributedCache, on which Polly.Caching.IDistributedCache.NetStandard11 depends, is not CLSCompliant.

[assembly: InternalsVisibleTo("Polly.Caching.Distributed.NetStandard20.Specs")]
9 changes: 7 additions & 2 deletions src/Polly.Caching.Distributed.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
<tags>Polly Cache Caching Cache-aside</tags>
<copyright>Copyright © 2019, App vNext</copyright>
<releaseNotes>
3.0.0
---------------------
- Allow caching of default(TResult)
- Compatible with Polly &gt;= v7

2.0.1
---------------------
- No functional changes
Expand All @@ -35,11 +40,11 @@
<dependencies>
<group targetFramework="netstandard1.1">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="Polly" version="[6.0.1,7)" />
<dependency id="Polly" version="7.0.0" />
<dependency id="Microsoft.Extensions.Caching.Abstractions" version="1.1.2" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Polly" version="[6.0.1,7)" />
<dependency id="Polly" version="7.0.0" />
<dependency id="Microsoft.Extensions.Caching.Abstractions" version="2.0.2" />
</group>
</dependencies>
Expand Down

0 comments on commit fc5be1b

Please sign in to comment.