Skip to content

Commit 0cae591

Browse files
authored
Merge pull request #254 from CaptnCodr/bugfix/dependencies-upper-bound
Change LOCKEDVERSION operator in nuget package template
2 parents ad2d19b + 866e478 commit 0cae591

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

paket.dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nuget System.Collections.NonGeneric
1313

1414
// xUnit
1515
nuget NHamcrest
16-
nuget xunit
16+
nuget xunit ~> 2.5.3
1717
nuget xunit.runner.visualstudio
1818

1919
// MsTest

paket.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ NUGET
2121
NETStandard.Library (2.0.3)
2222
Microsoft.NETCore.Platforms (>= 1.1)
2323
Newtonsoft.Json (13.0.3) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp3.1))
24-
NHamcrest (3.3)
24+
NHamcrest (3.4)
2525
NuGet.Frameworks (6.7) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp3.1))
26-
NUnit (3.13.3)
26+
NUnit (3.14)
2727
NETStandard.Library (>= 2.0)
2828
NUnit3TestAdapter (4.5)
2929
runtime.native.System (4.3.1) - restriction: || (== net6.0) (&& (== netstandard2.0) (>= netcoreapp1.0))
@@ -123,8 +123,8 @@ NUGET
123123
xunit.core (2.5.3)
124124
xunit.abstractions (2.0.3)
125125
xunit.analyzers (1.4)
126-
xunit.assert (2.5.3)
127-
NETStandard.Library (>= 1.6.1)
126+
xunit.assert (2.6.1)
127+
NETStandard.Library (>= 1.6.1) - restriction: == netstandard2.0
128128
xunit.core (2.5.3)
129129
xunit.extensibility.core (2.5.3)
130130
xunit.extensibility.execution (2.5.3)

src/FsUnit.MsTestUnit/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ files
2727
../../src/install.ps1 ==> tools
2828

2929
dependencies
30-
MSTest.TestFramework ~> LOCKEDVERSION
31-
NHamcrest ~> LOCKEDVERSION
30+
MSTest.TestFramework >= LOCKEDVERSION
31+
NHamcrest >= LOCKEDVERSION
3232
FSharp.Core >= LOCKEDVERSION

src/FsUnit.NUnit/paket.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ files
2727
../../src/install.ps1 ==> tools
2828

2929
dependencies
30-
NUnit ~> LOCKEDVERSION
30+
NUnit >= LOCKEDVERSION
3131
FSharp.Core >= LOCKEDVERSION

src/FsUnit.Xunit/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ files
2727
../../src/install.ps1 ==> tools
2828

2929
dependencies
30-
xunit ~> LOCKEDVERSION
31-
NHamcrest ~> LOCKEDVERSION
30+
xunit >= LOCKEDVERSION
31+
NHamcrest >= LOCKEDVERSION
3232
FSharp.Core >= LOCKEDVERSION

tests/FsUnit.NUnit.Test/init.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
namespace global
22

33
open FsUnit
4+
open NUnit.Framework
45

6+
[<SetUpFixture>]
57
type InitMsgUtils() =
68
inherit FSharpCustomMessageFormatter()

0 commit comments

Comments
 (0)