From 31fe6836487b30fa3b378e70473a06c4ca46ff9d Mon Sep 17 00:00:00 2001 From: reisenberger Date: Sun, 6 May 2018 17:19:42 +0100 Subject: [PATCH] v6 RTM Bump to v6.0.1 RTM --- CHANGELOG.md | 3 +++ GitVersionConfig.yaml | 2 +- README.md | 1 + src/Polly.NetStandard11/Properties/AssemblyInfo.cs | 4 ++-- src/Polly.NetStandard20/Properties/AssemblyInfo.cs | 4 ++-- src/Polly.nuspec | 3 +++ 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dbba369a5f..728df487dd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 6.0.1 +- Version 6 RTM, for integration to ASPNET Core 2.1 IHttpClientFactory + ## 6.0.0-v6alpha - Publish as strong-named package only (discontinue non-strong-named versions) - Add .NetStandard 2.0 tfm diff --git a/GitVersionConfig.yaml b/GitVersionConfig.yaml index e164313d5bb..67f30281d5d 100644 --- a/GitVersionConfig.yaml +++ b/GitVersionConfig.yaml @@ -1 +1 @@ -next-version: 6.0.0 \ No newline at end of file +next-version: 6.0.1 \ No newline at end of file diff --git a/README.md b/README.md index 8eaab6ae823..f5947d2a301 100644 --- a/README.md +++ b/README.md @@ -989,6 +989,7 @@ For details of changes by release see the [change log](https://github.com/App-vN * [@erickhouse](https://github.com/erickhouse) - Add a new onBreak overload that provides the prior state on a transition to an open state. * [@benagain](https://github.com/benagain) - Bug fix: RelativeTtl in CachePolicy now always returns a ttl relative to time item is cached. * [@urig](https://github.com/urig) - Allow TimeoutPolicy to be configured with Timeout.InfiniteTimeSpan. +* [@reisenberger](https://github.com/reisenberger) - Integration with [IHttpClientFactory](https://github.com/aspnet/HttpClientFactory/) for ASPNET Core 2.1. # Sample Projects diff --git a/src/Polly.NetStandard11/Properties/AssemblyInfo.cs b/src/Polly.NetStandard11/Properties/AssemblyInfo.cs index 30fb9872933..8bea54c3b51 100644 --- a/src/Polly.NetStandard11/Properties/AssemblyInfo.cs +++ b/src/Polly.NetStandard11/Properties/AssemblyInfo.cs @@ -3,8 +3,8 @@ using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Polly")] -[assembly: AssemblyInformationalVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyInformationalVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] [assembly: AssemblyVersion("6.0.0.0")] [assembly: CLSCompliant(true)] diff --git a/src/Polly.NetStandard20/Properties/AssemblyInfo.cs b/src/Polly.NetStandard20/Properties/AssemblyInfo.cs index 81f5e63cab9..7d9cb58df33 100644 --- a/src/Polly.NetStandard20/Properties/AssemblyInfo.cs +++ b/src/Polly.NetStandard20/Properties/AssemblyInfo.cs @@ -3,8 +3,8 @@ using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Polly")] -[assembly: AssemblyInformationalVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyInformationalVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] [assembly: AssemblyVersion("6.0.0.0")] [assembly: CLSCompliant(true)] diff --git a/src/Polly.nuspec b/src/Polly.nuspec index 5891536f053..263bad60ebb 100644 --- a/src/Polly.nuspec +++ b/src/Polly.nuspec @@ -13,6 +13,9 @@ Exception Handling Resilience Transient Fault Policy Circuit Breaker CircuitBreaker Retry Wait Cache Cache-aside Bulkhead Fallback Timeout Throttle Parallelization Copyright © 2018, App vNext + 6.0.1 + - Version 6 RTM, for integration to ASPNET Core 2.1 IHttpClientFactory + 6.0.0-v6alpha --------------------- - Publish as strong-named package only (discontinue non-strong-named versions)