Skip to content

Commit

Permalink
Add v5.3.1 doco (#290)
Browse files Browse the repository at this point in the history
* Add v5.3.1 doco

* Remove unused compile constant
  • Loading branch information
reisenberger authored Aug 5, 2017
1 parent a7021c5 commit 7685d88
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.3.1
- Make ISyncPolicy<TResult> public
- (Upgrade solution to msbuild15)

## 5.3.0
- Fix ExecuteAndCapture() usage with PolicyWrap
- Allow Fallback delegates to take execution Context
Expand Down
2 changes: 1 addition & 1 deletion GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
next-version: 5.3.0
next-version: 5.3.1
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions src/Polly.Net40Async.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
<releaseNotes>
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<TResult> public
- (Upgrade solution to msbuild15)

5.3.0
---------------------
- Fix ExecuteAndCapture() usage with PolicyWrap
Expand Down
4 changes: 2 additions & 2 deletions src/Polly.Net45/Polly.Net45.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DefineConstants>TRACE;DEBUG;SUPPORTS_READONLY_COLLECTION;NET45</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DefineConstants>TRACE;SUPPORTS_READONLY_COLLECTION;RELEASE;NET45</DefineConstants>
<DefineConstants>TRACE;RELEASE;NET45</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs">
Expand Down
2 changes: 1 addition & 1 deletion src/Polly.NetStandard11/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
5 changes: 5 additions & 0 deletions src/Polly.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
<copyright>Copyright © 2017, App vNext</copyright>
<releaseNotes>
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<TResult> public
- (Upgrade solution to msbuild15)

5.3.0
---------------------
Expand Down

0 comments on commit 7685d88

Please sign in to comment.