File tree Expand file tree Collapse file tree 16 files changed +45
-30
lines changed Expand file tree Collapse file tree 16 files changed +45
-30
lines changed Original file line number Diff line number Diff line change 1
- ### 6.0.0.0-alpha2 - Dec 15, 2023
2
- - Migrate to NUnit v4.
1
+ ### 6.0.0.0 - Jan 11, 2024
3
2
- [ BREAKING] FsUnit (NUnit v4 as dependency) drops netstandard2.0 as target framework.
4
- - Update dependencies to MsTest v3.
3
+ - Migrate to NUnit v4. - (https://github.com/fsprojects/FsUnit/pull/259 )
4
+ - Update dependencies to MsTest v3. - (https://github.com/fsprojects/FsUnit/pull/260 )
5
+ - Update/Fix docs. - (https://github.com/fsprojects/FsUnit/pull/262 )
5
6
6
7
### 5.6.1.0 - Nov 29, 2023
7
8
- Set NUnit dependency < 4.0.0 to prevent compatibility issues. - (https://github.com/fsprojects/FsUnit/pull/257 )
Original file line number Diff line number Diff line change 1
1
(*** hide ***)
2
2
// This block of code is omitted in the generated HTML documentation. Use
3
3
// it to define helpers that you do not want to show in the documentation.
4
- #r " ../packages/NUnit/lib/netstandard2 .0/nunit.framework.dll"
5
- #r " ../bin/FsUnit.NUnit/netstandard2 .0/FsUnit.NUnit.dll"
4
+ #r " ../packages/NUnit/lib/net6 .0/nunit.framework.dll"
5
+ #r " ../bin/FsUnit.NUnit/net6 .0/FsUnit.NUnit.dll"
6
6
7
7
(**
8
8
What is FsUnitTyped?
Original file line number Diff line number Diff line change 1
1
(*** hide ***)
2
2
// This block of code is omitted in the generated HTML documentation. Use
3
3
// it to define helpers that you do not want to show in the documentation.
4
- #r " ../packages/MSTest.TestFramework/lib/netstandard1 .0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll"
4
+ #r " ../packages/MSTest.TestFramework/lib/netstandard2 .0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll"
5
5
#r " ../packages/NHamcrest/lib/netstandard2.0/NHamcrest.dll"
6
6
#r " ../bin/FsUnit.MsTest/netstandard2.0/FsUnit.MsTest.dll"
7
7
Original file line number Diff line number Diff line change 1
1
(*** hide ***)
2
2
// This block of code is omitted in the generated HTML documentation. Use
3
3
// it to define helpers that you do not want to show in the documentation.
4
- #r " ../packages/NUnit/lib/netstandard2 .0/nunit.framework.dll"
5
- #r " ../bin/FsUnit.NUnit/netstandard2 .0/FsUnit.NUnit.dll"
4
+ #r " ../packages/NUnit/lib/net6 .0/nunit.framework.dll"
5
+ #r " ../bin/FsUnit.NUnit/net6 .0/FsUnit.NUnit.dll"
6
6
7
7
open NUnit.Framework
8
8
(**
@@ -32,7 +32,9 @@ __SetUpFixture__
32
32
Add following piece of code to your assembly to register formatter for namespace or entire assembly
33
33
*)
34
34
open FsUnit
35
+ open NUnit.Framework
35
36
37
+ [<SetUpFixture>]
36
38
type InitMsgUtils () =
37
39
inherit FSharpCustomMessageFormatter()
38
40
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ <h3 class="muted"><a href="./index.html">{{fsdocs-collection-name}}</a></h3>
84
84
</ div >
85
85
</ div >
86
86
</ div >
87
- < a href ="https://github.com/fsprojects/FsUnit "> < img style ="position: absolute; top: 0; right: 0; border: 0; " src ="https://s3.amazonaws.com/github/ribbons /forkme_right_gray_6d6d6d.png " alt ="Fork me on GitHub "> </ a >
87
+ < a href ="https://github.com/fsprojects/FsUnit "> < img style ="position: absolute; top: 0; right: 0; border: 0; " src ="https://github.blog/wp-content/uploads/2008/12 /forkme_right_gray_6d6d6d.png " alt ="Fork me on GitHub "> </ a >
88
88
89
89
<!-- BEGIN SEARCH BOX: this adds support for the search box -->
90
90
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/JavaScript-autoComplete/1.0.4/auto-complete.css " />
Original file line number Diff line number Diff line change 1
1
(*** hide ***)
2
2
// This block of code is omitted in the generated HTML documentation. Use
3
3
// it to define helpers that you do not want to show in the documentation.
4
- #r " ../packages/NUnit/lib/netstandard2 .0/nunit.framework.dll"
5
- #r " ../bin/FsUnit.NUnit/netstandard2 .0/FsUnit.NUnit.dll"
4
+ #r " ../packages/NUnit/lib/net6 .0/nunit.framework.dll"
5
+ #r " ../bin/FsUnit.NUnit/net6 .0/FsUnit.NUnit.dll"
6
6
7
7
open FsUnit
8
8
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FsUnit.MsTest" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FsUnit" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." ) >]
8
- [<assembly: AssemblyVersionAttribute( " 5.6.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 5.6.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.0.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.0.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FsUnit.MsTest"
14
14
let [<Literal>] AssemblyProduct = " FsUnit"
15
15
let [<Literal>] AssemblyDescription = " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16
- let [<Literal>] AssemblyVersion = " 5.6.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 5.6.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.0.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.0.0 .0"
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://raw.githubusercontent.com/fsprojects/FsUnit/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2012-2023
19
+ Copyright 2012-2024
18
20
tags
19
21
F# fsharp MsTest FsUnit
20
22
summary
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://github.com/fsprojects/FsUnit/blob/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2015-2023
19
+ Copyright 2015-2024
18
20
tags
19
21
F# fsharp MsTest FsUnit
20
22
summary
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FsUnit.NUnit" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FsUnit" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." ) >]
8
- [<assembly: AssemblyVersionAttribute( " 5.6.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 5.6.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.0.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.0.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FsUnit.NUnit"
14
14
let [<Literal>] AssemblyProduct = " FsUnit"
15
15
let [<Literal>] AssemblyDescription = " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16
- let [<Literal>] AssemblyVersion = " 5.6.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 5.6.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.0.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.0.0 .0"
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >net6.0</TargetFrameworks >
3
+ <TargetFramework >net6.0</TargetFramework >
4
4
<AssemblyName >FsUnit.NUnit</AssemblyName >
5
5
<EnableDefaultCompileItems >false</EnableDefaultCompileItems >
6
6
<GenerateDocumentationFile >true</GenerateDocumentationFile >
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://raw.githubusercontent.com/fsprojects/FsUnit/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2012-2023
19
+ Copyright 2012-2024
18
20
tags
19
21
F# fsharp NUnit FsUnit
20
22
summary
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://github.com/fsprojects/FsUnit/blob/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2015-2023
19
+ Copyright 2015-2024
18
20
tags
19
21
F# fsharp NUnit FsUnit
20
22
summary
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FsUnit.Xunit" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FsUnit" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." ) >]
8
- [<assembly: AssemblyVersionAttribute( " 5.6.1 .0" ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 5.6.1 .0" ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 6.0.0 .0" ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 6.0.0 .0" ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FsUnit.Xunit"
14
14
let [<Literal>] AssemblyProduct = " FsUnit"
15
15
let [<Literal>] AssemblyDescription = " FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16
- let [<Literal>] AssemblyVersion = " 5.6.1 .0"
17
- let [<Literal>] AssemblyFileVersion = " 5.6.1 .0"
16
+ let [<Literal>] AssemblyVersion = " 6.0.0 .0"
17
+ let [<Literal>] AssemblyFileVersion = " 6.0.0 .0"
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://raw.githubusercontent.com/fsprojects/FsUnit/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2012-2023
19
+ Copyright 2012-2024
18
20
tags
19
21
F# fsharp xUnit FsUnit
20
22
summary
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ projectUrl
9
9
https://github.com/fsprojects/FsUnit
10
10
iconUrl
11
11
https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/img/logo.png
12
+ licenseExpression
13
+ MIT
12
14
licenseUrl
13
15
https://github.com/fsprojects/FsUnit/blob/master/license.txt
14
16
requireLicenseAcceptance
15
17
false
16
18
copyright
17
- Copyright 2015-2023
19
+ Copyright 2015-2024
18
20
tags
19
21
F# fsharp xUnit FsUnit
20
22
summary
You can’t perform that action at this time.
0 commit comments