Skip to content

Commit

Permalink
Correctly state System.ValueTuple dependency for NetStandard 1.1 tfm (#…
Browse files Browse the repository at this point in the history
…582)

* State `System.ValueTuple` dependency at nuspec level for NetStandard1.1 tfm
* v7.0.1
  • Loading branch information
reisenberger authored Feb 9, 2019
1 parent 1a351a8 commit d4ec6f4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 7.0.1
- Explicitly state System.ValueTuple dependency in nuspec (for Net Standard 1.1)

## 7.0.0
- Clarify separation of sync and async policies (breaking change)
- Enable extensibility by custom policies hosted external to Polly
Expand Down
2 changes: 1 addition & 1 deletion GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
next-version: 7.0.0
next-version: 7.0.1
4 changes: 2 additions & 2 deletions src/Polly.NetStandard11/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Polly")]
[assembly: AssemblyInformationalVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
[assembly: AssemblyInformationalVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: CLSCompliant(true)]

Expand Down
4 changes: 2 additions & 2 deletions src/Polly.NetStandard20/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Polly")]
[assembly: AssemblyInformationalVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
[assembly: AssemblyInformationalVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: CLSCompliant(true)]

Expand Down
5 changes: 5 additions & 0 deletions src/Polly.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<tags>Exception Handling Resilience Transient Fault Policy Circuit Breaker CircuitBreaker Retry Wait Cache Cache-aside Bulkhead Fallback Timeout Throttle Parallelization</tags>
<copyright>Copyright © 2018, App vNext</copyright>
<releaseNotes>
7.0.1
---------------------
- Explicitly state System.ValueTuple dependency in nuspec (for Net Standard 1.1)

7.0.0
---------------------
- Clarify separation of sync and async policies (breaking change)
Expand Down Expand Up @@ -168,6 +172,7 @@
<dependencies>
<group targetFramework="netstandard1.1">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="System.ValueTuple" version="4.5.0" />
</group>
<group targetFramework="netstandard2.0"/>
</dependencies>
Expand Down

0 comments on commit d4ec6f4

Please sign in to comment.