Skip to content

Commit 84bbf5b

Browse files
committed
Add v2.0.2 doco
1 parent f678227 commit 84bbf5b

File tree

6 files changed

+30
-10
lines changed

6 files changed

+30
-10
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Polly.Caching.MemoryCache change log
22

3+
## 2.0.2
4+
- No functional changes
5+
- Indicate compatibility with Polly < v7
6+
37
## 2.0.1
48
- Upgrade for compatibility with Polly v6.1.1
59

GitVersionConfig.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
next-version: 2.0.1
1+
next-version: 2.0.2

README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,22 @@ Polly.Caching.Memory >= v2.0 supports .NET Standard 1.3 and .NET Standard 2.0
2525

2626
Polly.Caching.MemoryCache <v2.0 supports .NET4.0, .NET4.5 and .NetStandard 1.3
2727

28-
## Dependencies
28+
## Versions and Dependencies
2929

30-
Polly.Caching.Memory >= v2.0 works with Polly v6.0.1 and above.
30+
Polly.Caching.Memory >=v2.0.2 and <v3 requires:
3131

32-
Polly.Caching.MemoryCache <v2.0 works with Polly v5.9.0 and above.
32+
+ [Polly](https://nuget.org/packages/polly) >= v6.1.1 and <v7.
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+
35+
Polly.Caching.Memory >= v2.0.1 requires:
36+
37+
+ [Polly](https://nuget.org/packages/polly) >= v6.0.1 and <=v6.1.0.
38+
+ [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).
39+
40+
Polly.Caching.MemoryCache <v1.* requires:
41+
42+
+ [Polly](https://nuget.org/packages/polly) >=v5.9.0 and <v6.
43+
+ [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/) v1.1.2, for NetStandard 1.3.
3344

3445
# How to use the Polly.Caching.Memory plugin
3546

src/Polly.Caching.Memory.NetStandard13/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
[assembly: AssemblyTitle("Polly.Caching.Memory")]
66
[assembly: AssemblyVersion("2.0.0.0")]
7-
[assembly: AssemblyFileVersion("2.0.1.0")]
8-
[assembly: AssemblyInformationalVersion("2.0.1.0")]
7+
[assembly: AssemblyFileVersion("2.0.2.0")]
8+
[assembly: AssemblyInformationalVersion("2.0.2.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
[assembly: AssemblyTitle("Polly.Caching.Memory")]
66
[assembly: AssemblyVersion("2.0.0.0")]
7-
[assembly: AssemblyFileVersion("2.0.1.0")]
8-
[assembly: AssemblyInformationalVersion("2.0.1.0")]
7+
[assembly: AssemblyFileVersion("2.0.2.0")]
8+
[assembly: AssemblyInformationalVersion("2.0.2.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

+7-2
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+
2.0.2
17+
---------------------
18+
- No functional changes
19+
- Indicate compatibility with Polly &lt; v7
20+
1621
2.0.1
1722
---------------------
1823
- Upgrade for compatibility with Polly v6.1.1
@@ -48,11 +53,11 @@
4853
<dependencies>
4954
<group targetFramework="netstandard1.3">
5055
<dependency id="NETStandard.Library" version="1.6.1" />
51-
<dependency id="Polly" version="6.1.1" />
56+
<dependency id="Polly" version="[6.1.1,7)" />
5257
<dependency id="Microsoft.Extensions.Caching.Memory" version="1.1.2" />
5358
</group>
5459
<group targetFramework="netstandard2.0">
55-
<dependency id="Polly" version="6.1.1" />
60+
<dependency id="Polly" version="[6.1.1,7)" />
5661
<dependency id="Microsoft.Extensions.Caching.Memory" version="2.0.2" />
5762
</group>
5863
</dependencies>

0 commit comments

Comments
 (0)