From 7685d88435083611005e9adaca82e132af7da886 Mon Sep 17 00:00:00 2001 From: reisenberger Date: Sat, 5 Aug 2017 22:22:01 +0100 Subject: [PATCH] Add v5.3.1 doco (#290) * Add v5.3.1 doco * Remove unused compile constant --- CHANGELOG.md | 4 ++++ GitVersionConfig.yaml | 2 +- README.md | 1 + src/Polly.Net40Async.nuspec | 5 +++++ src/Polly.Net45/Polly.Net45.csproj | 4 ++-- src/Polly.NetStandard11/Properties/AssemblyInfo.cs | 2 +- src/Polly.nuspec | 5 +++++ 7 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d672cfdc7c0..df93838c7f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.3.1 +- Make ISyncPolicy public +- (Upgrade solution to msbuild15) + ## 5.3.0 - Fix ExecuteAndCapture() usage with PolicyWrap - Allow Fallback delegates to take execution Context diff --git a/GitVersionConfig.yaml b/GitVersionConfig.yaml index 0be1745c2fc..2692e4728f8 100644 --- a/GitVersionConfig.yaml +++ b/GitVersionConfig.yaml @@ -1 +1 @@ -next-version: 5.3.0 +next-version: 5.3.1 diff --git a/README.md b/README.md index 1ebb8a33a30..1f5fc69da02 100644 --- a/README.md +++ b/README.md @@ -906,6 +906,7 @@ For details of changes by release see the [change log](https://github.com/App-vN * [@ankitbko](https://github.com/ankitbko) - Add PolicyRegistry for storing and retrieving policies. * [@reisenberger](https://github.com/reisenberger) - Add interfaces by policy type and execution type. * [@seanfarrow](https://github.com/SeanFarrow) - Add IReadOnlyPolicyRegistry interface. +* [@kesmy](https://github.com/Kesmy) - Migrate solution to msbuild15, banish project.json and packages.config # Sample Projects diff --git a/src/Polly.Net40Async.nuspec b/src/Polly.Net40Async.nuspec index 810a3655deb..d73534e4c74 100644 --- a/src/Polly.Net40Async.nuspec +++ b/src/Polly.Net40Async.nuspec @@ -15,6 +15,11 @@ v5.0 is a major release with significant new resilience policies: Timeout; Bulkhead Isolation; Fallback; and PolicyWrap. See release notes back to v5.0.0 for full details. v5.0.5 includes important circuit-breaker fixes. + 5.3.1 + --------------------- + - Make ISyncPolicy public + - (Upgrade solution to msbuild15) + 5.3.0 --------------------- - Fix ExecuteAndCapture() usage with PolicyWrap diff --git a/src/Polly.Net45/Polly.Net45.csproj b/src/Polly.Net45/Polly.Net45.csproj index 7b7ff4121e2..f09c8a0b4a8 100644 --- a/src/Polly.Net45/Polly.Net45.csproj +++ b/src/Polly.Net45/Polly.Net45.csproj @@ -11,11 +11,11 @@ full - TRACE;DEBUG;SUPPORTS_READONLY_COLLECTION;NET45 + TRACE;DEBUG;NET45 pdbonly - TRACE;SUPPORTS_READONLY_COLLECTION;RELEASE;NET45 + TRACE;RELEASE;NET45 diff --git a/src/Polly.NetStandard11/Properties/AssemblyInfo.cs b/src/Polly.NetStandard11/Properties/AssemblyInfo.cs index 76424dd1812..e3946687b5d 100644 --- a/src/Polly.NetStandard11/Properties/AssemblyInfo.cs +++ b/src/Polly.NetStandard11/Properties/AssemblyInfo.cs @@ -3,7 +3,7 @@ using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Polly")] -[assembly: AssemblyVersion("5.3.0.0")] +[assembly: AssemblyVersion("5.3.1.0")] [assembly: CLSCompliant(true)] [assembly: InternalsVisibleTo("Polly.NetStandard11.Specs")] \ No newline at end of file diff --git a/src/Polly.nuspec b/src/Polly.nuspec index 43cb5d6655d..9de8b792325 100644 --- a/src/Polly.nuspec +++ b/src/Polly.nuspec @@ -14,6 +14,11 @@ Copyright © 2017, App vNext v5.0 is a major release with significant new resilience policies: Timeout; Bulkhead Isolation; Fallback; and PolicyWrap. See release notes back to v5.0.0 for full details. v5.0.5 includes important circuit-breaker fixes. + + 5.3.1 + --------------------- + - Make ISyncPolicy public + - (Upgrade solution to msbuild15) 5.3.0 ---------------------