Skip to content

Commit

Permalink
Merge pull request #591 from stakx/net47-valuetuple
Browse files Browse the repository at this point in the history
Upgrade dependency on System.ValueTuple to version 4.4.0
  • Loading branch information
stakx authored Feb 23, 2018
2 parents dce0164 + f9b3d47 commit 55219b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1

## Unreleased

#### Changed

* Upgraded `System.ValueTuple` dependency to version 4.4.0 in order to reestablish Moq compatibility with .NET 4.7 (and later), which already include the `ValueTuple` types (@stakx, #591)

#### Fixed

* Wrong parameters count for extension methods in `Callback` and `Returns` (@Caraul, #575)
Expand Down
4 changes: 2 additions & 2 deletions Moq.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<group targetFramework=".NETFramework4.5">
<dependency id="Castle.Core" version="4.2.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.4.0" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="1.6.1" />
<dependency id="System.Linq.Queryable" version="4.3.0" />
<dependency id="System.Reflection.TypeExtensions" version="4.3.0" />
<dependency id="Castle.Core" version="4.2.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.3.0" />
<dependency id="System.ValueTuple" version="4.4.0" />
</group>
</dependencies>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Source/Moq.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="IFluentInterface" Version="2.0.4" />
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.3" PrivateAssets="All" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.2.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
Expand Down

0 comments on commit 55219b4

Please sign in to comment.