Skip to content

Commit d8b9520

Browse files
committed
Release v5.2.0.
1 parent e821351 commit d8b9520

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 5.2.0 - Jan 13, 2023
2+
- Align should & throw in xUnit and MsTest. -> (https://github.com/fsprojects/FsUnit/pull/226)
3+
- Add .NET7 as TargetFramework.
4+
- Update dependencies.
5+
16
### 5.1.0 - Oct 29, 2022
27
- Add `equalSeq` operator - https://github.com/fsprojects/FsUnit/pull/222
38

src/FsUnit.MsTestUnit/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsUnit.MsTest")>]
66
[<assembly: AssemblyProductAttribute("FsUnit")>]
77
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
8-
[<assembly: AssemblyVersionAttribute("5.1.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
8+
[<assembly: AssemblyVersionAttribute("5.2.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FsUnit.MsTest"
1414
let [<Literal>] AssemblyProduct = "FsUnit"
1515
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16-
let [<Literal>] AssemblyVersion = "5.1.0"
17-
let [<Literal>] AssemblyFileVersion = "5.1.0"
16+
let [<Literal>] AssemblyVersion = "5.2.0"
17+
let [<Literal>] AssemblyFileVersion = "5.2.0"

src/FsUnit.NUnit/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsUnit.NUnit")>]
66
[<assembly: AssemblyProductAttribute("FsUnit")>]
77
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
8-
[<assembly: AssemblyVersionAttribute("5.1.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
8+
[<assembly: AssemblyVersionAttribute("5.2.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FsUnit.NUnit"
1414
let [<Literal>] AssemblyProduct = "FsUnit"
1515
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16-
let [<Literal>] AssemblyVersion = "5.1.0"
17-
let [<Literal>] AssemblyFileVersion = "5.1.0"
16+
let [<Literal>] AssemblyVersion = "5.2.0"
17+
let [<Literal>] AssemblyFileVersion = "5.2.0"

src/FsUnit.Xunit/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsUnit.Xunit")>]
66
[<assembly: AssemblyProductAttribute("FsUnit")>]
77
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
8-
[<assembly: AssemblyVersionAttribute("5.1.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
8+
[<assembly: AssemblyVersionAttribute("5.2.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FsUnit.Xunit"
1414
let [<Literal>] AssemblyProduct = "FsUnit"
1515
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
16-
let [<Literal>] AssemblyVersion = "5.1.0"
17-
let [<Literal>] AssemblyFileVersion = "5.1.0"
16+
let [<Literal>] AssemblyVersion = "5.2.0"
17+
let [<Literal>] AssemblyFileVersion = "5.2.0"

0 commit comments

Comments
 (0)