Skip to content

Commit fc5be1b

Browse files
committed
Add doco for v3.0.0
1 parent 62eab65 commit fc5be1b

File tree

6 files changed

+26
-11
lines changed

6 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Polly.Caching.Distributed change log
22

3+
## 3.0.0
4+
- Allow caching of `default(TResult)`
5+
- Compatible with Polly >= v7
6+
37
## 2.0.1
48
- No functional changes
59
- Indicate compatibility with Polly < v7

GitVersionConfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
next-version: 2.0.1
1+
next-version: 3.0.0

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,19 @@ Polly.Caching.Distributed supports .NET Standard 1.1 and .NET Standard 2.0.
2828

2929
## Versions and Dependencies
3030

31+
Polly.Caching.Distributed >=v3.0 requires:
32+
33+
+ [Polly](https://nuget.org/packages/polly) >= v7.0.0.
34+
+ [Microsoft.Extensions.Caching.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Abstractions/) v2.0.2 or above.
35+
3136
Polly.Caching.Distributed >=v2.0 and <v3 requires:
3237

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

3641
Polly.Caching.IDistributedCache <v2.0 requires:
3742

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

4146

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

133139
# Instructions for Contributing
134140

src/Polly.Caching.Distributed.NetStandard11/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Runtime.CompilerServices;
44

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

1111
[assembly: InternalsVisibleTo("Polly.Caching.Distributed.NetStandard11.Specs")]

src/Polly.Caching.Distributed.NetStandard20/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Runtime.CompilerServices;
44

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

1111
[assembly: InternalsVisibleTo("Polly.Caching.Distributed.NetStandard20.Specs")]

src/Polly.Caching.Distributed.nuspec

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
<tags>Polly Cache Caching Cache-aside</tags>
1414
<copyright>Copyright © 2019, App vNext</copyright>
1515
<releaseNotes>
16+
3.0.0
17+
---------------------
18+
- Allow caching of default(TResult)
19+
- Compatible with Polly &gt;= v7
20+
1621
2.0.1
1722
---------------------
1823
- No functional changes
@@ -35,11 +40,11 @@
3540
<dependencies>
3641
<group targetFramework="netstandard1.1">
3742
<dependency id="NETStandard.Library" version="1.6.1" />
38-
<dependency id="Polly" version="[6.0.1,7)" />
43+
<dependency id="Polly" version="7.0.0" />
3944
<dependency id="Microsoft.Extensions.Caching.Abstractions" version="1.1.2" />
4045
</group>
4146
<group targetFramework="netstandard2.0">
42-
<dependency id="Polly" version="[6.0.1,7)" />
47+
<dependency id="Polly" version="7.0.0" />
4348
<dependency id="Microsoft.Extensions.Caching.Abstractions" version="2.0.2" />
4449
</group>
4550
</dependencies>

0 commit comments

Comments
 (0)