Skip to content

Commit

Permalink
Add v2.0.2 doco
Browse files Browse the repository at this point in the history
  • Loading branch information
reisenberger committed Jan 26, 2019
1 parent f678227 commit 84bbf5b
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 10 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.MemoryCache change log

## 2.0.2
- No functional changes
- Indicate compatibility with Polly < v7

## 2.0.1
- Upgrade for compatibility with Polly v6.1.1

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: 2.0.2
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,22 @@ Polly.Caching.Memory >= v2.0 supports .NET Standard 1.3 and .NET Standard 2.0

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

## Dependencies
## Versions and Dependencies

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

Polly.Caching.MemoryCache <v2.0 works with Polly v5.9.0 and above.
+ [Polly](https://nuget.org/packages/polly) >= v6.1.1 and <v7.
+ [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).

Polly.Caching.Memory >= v2.0.1 requires:

+ [Polly](https://nuget.org/packages/polly) >= v6.0.1 and <=v6.1.0.
+ [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).

Polly.Caching.MemoryCache <v1.* requires:

+ [Polly](https://nuget.org/packages/polly) >=v5.9.0 and <v6.
+ [Microsoft.Extensions.Caching.Memory](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/) v1.1.2, for NetStandard 1.3.

# How to use the Polly.Caching.Memory plugin

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

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

[assembly: InternalsVisibleTo("Polly.Caching.Memory.NetStandard13.Specs")]
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

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

[assembly: InternalsVisibleTo("Polly.Caching.Memory.NetStandard20.Specs")]
9 changes: 7 additions & 2 deletions src/Polly.Caching.Memory.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>
2.0.2
---------------------
- No functional changes
- Indicate compatibility with Polly &lt; v7

2.0.1
---------------------
- Upgrade for compatibility with Polly v6.1.1
Expand Down Expand Up @@ -48,11 +53,11 @@
<dependencies>
<group targetFramework="netstandard1.3">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="Polly" version="6.1.1" />
<dependency id="Polly" version="[6.1.1,7)" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="1.1.2" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Polly" version="6.1.1" />
<dependency id="Polly" version="[6.1.1,7)" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="2.0.2" />
</group>
</dependencies>
Expand Down

0 comments on commit 84bbf5b

Please sign in to comment.