Skip to content

Commit

Permalink
Release v5.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr committed Jan 13, 2023
1 parent e821351 commit d8b9520
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
@@ -1,3 +1,8 @@
### 5.2.0 - Jan 13, 2023
- Align should & throw in xUnit and MsTest. -> (https://github.com/fsprojects/FsUnit/pull/226)
- Add .NET7 as TargetFramework.
- Update dependencies.

### 5.1.0 - Oct 29, 2022
- Add `equalSeq` operator - https://github.com/fsprojects/FsUnit/pull/222

Expand Down
8 changes: 4 additions & 4 deletions src/FsUnit.MsTestUnit/AssemblyInfo.fs
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.MsTest")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
[<assembly: AssemblyVersionAttribute("5.2.0")>]
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsUnit.MsTest"
let [<Literal>] AssemblyProduct = "FsUnit"
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
let [<Literal>] AssemblyVersion = "5.1.0"
let [<Literal>] AssemblyFileVersion = "5.1.0"
let [<Literal>] AssemblyVersion = "5.2.0"
let [<Literal>] AssemblyFileVersion = "5.2.0"
8 changes: 4 additions & 4 deletions src/FsUnit.NUnit/AssemblyInfo.fs
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.NUnit")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
[<assembly: AssemblyVersionAttribute("5.2.0")>]
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsUnit.NUnit"
let [<Literal>] AssemblyProduct = "FsUnit"
let [<Literal>] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable."
let [<Literal>] AssemblyVersion = "5.1.0"
let [<Literal>] AssemblyFileVersion = "5.1.0"
let [<Literal>] AssemblyVersion = "5.2.0"
let [<Literal>] AssemblyFileVersion = "5.2.0"
8 changes: 4 additions & 4 deletions src/FsUnit.Xunit/AssemblyInfo.fs
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsUnit.Xunit")>]
[<assembly: AssemblyProductAttribute("FsUnit")>]
[<assembly: AssemblyDescriptionAttribute("FsUnit is a set of libraries that makes unit-testing with F# more enjoyable.")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.0")>]
[<assembly: AssemblyVersionAttribute("5.2.0")>]
[<assembly: AssemblyFileVersionAttribute("5.2.0")>]
do ()

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

0 comments on commit d8b9520

Please sign in to comment.