Skip to content

Commit 05ed432

Browse files
committed
Add v3.0.0 doco
1 parent f58c673 commit 05ed432

File tree

6 files changed

+25
-10
lines changed

6 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Polly.Caching.MemoryCache change log
1+
# Polly.Caching.Memory change log
2+
3+
## 3.0.0
4+
- Allow caching of `default(TResult)`
5+
- Compatible with Polly >= v7
26

37
## 2.0.2
48
- No functional changes

GitVersionConfig.yaml

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

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ Polly.Caching.MemoryCache <v2.0 supports .NET4.0, .NET4.5 and .NetStandard 1.
2727

2828
## Versions and Dependencies
2929

30+
Polly.Caching.Memory >=v3.0 requires:
31+
32+
+ [Polly](https://nuget.org/packages/polly) >= v7.0.0.
33+
+ [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/) v2.0.2 or above (or v1.1.2, for NetStandard 1.3).
34+
3035
Polly.Caching.Memory >=v2.0.1 and <v3 requires:
3136

3237
+ [Polly](https://nuget.org/packages/polly) >= v6.1.1 and <v7.
@@ -115,6 +120,7 @@ For details of changes by release see the [change log](CHANGELOG.md).
115120
* [@seanfarrow](https://github.com/seanfarrow) and [@reisenberger](https://github.com/reisenberger) - Initial caching architecture in the main Polly repo
116121
* [@kesmy](https://github.com/kesmy) - original structuring of the build for msbuild15, in the main Polly repo
117122
* [@seanfarrow](https://github.com/seanfarrow) - v2.0 update to Signed packages only to correspond with Polly v6.0.1
123+
* [@reisenberger](https://github.com/reisenberger) - Update to Polly v7.0.0
118124

119125

120126
# Instructions for Contributing

src/Polly.Caching.Memory.NetStandard13/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.Memory")]
6-
[assembly: AssemblyVersion("2.0.0.0")]
7-
[assembly: AssemblyFileVersion("2.0.2.0")]
8-
[assembly: AssemblyInformationalVersion("2.0.2.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.MemoryCache, on which Polly.Caching.MemoryCache.NetStandard13 depends, is not CLSCompliant.
1010

1111
[assembly: InternalsVisibleTo("Polly.Caching.Memory.NetStandard13.Specs")]

src/Polly.Caching.Memory.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.Memory")]
6-
[assembly: AssemblyVersion("2.0.0.0")]
7-
[assembly: AssemblyFileVersion("2.0.2.0")]
8-
[assembly: AssemblyInformationalVersion("2.0.2.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.MemoryCache, on which Polly.Caching.MemoryCache.NetStandard13 depends, is not CLSCompliant.
1010

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

src/Polly.Caching.Memory.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.2
1722
---------------------
1823
- No functional changes
@@ -53,11 +58,11 @@
5358
<dependencies>
5459
<group targetFramework="netstandard1.3">
5560
<dependency id="NETStandard.Library" version="1.6.1" />
56-
<dependency id="Polly" version="[6.1.1,7)" />
61+
<dependency id="Polly" version="7.0.0" />
5762
<dependency id="Microsoft.Extensions.Caching.Memory" version="1.1.2" />
5863
</group>
5964
<group targetFramework="netstandard2.0">
60-
<dependency id="Polly" version="[6.1.1,7)" />
65+
<dependency id="Polly" version="7.0.0" />
6166
<dependency id="Microsoft.Extensions.Caching.Memory" version="2.0.2" />
6267
</group>
6368
</dependencies>

0 commit comments

Comments
 (0)