Skip to content

Commit

Permalink
Release v5.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr committed Oct 29, 2022
1 parent 21ab9a1 commit c5b7bd0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 5.1.0 - Oct 29, 2022
- Add `equalSeq` operator - https://github.com/fsprojects/FsUnit/pull/222

### 5.0.5 - Sep 27, 2022
- Fix `throwWithMessage` that now ignores return type. - https://github.com/fsprojects/FsUnit/pull/220

Expand Down
8 changes: 4 additions & 4 deletions src/FsUnit.MsTestUnit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.0.5")>]
[<assembly: AssemblyFileVersionAttribute("5.0.5")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.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.0.5"
let [<Literal>] AssemblyFileVersion = "5.0.5"
let [<Literal>] AssemblyVersion = "5.1.0"
let [<Literal>] AssemblyFileVersion = "5.1.0"
8 changes: 4 additions & 4 deletions src/FsUnit.NUnit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.0.5")>]
[<assembly: AssemblyFileVersionAttribute("5.0.5")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.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.0.5"
let [<Literal>] AssemblyFileVersion = "5.0.5"
let [<Literal>] AssemblyVersion = "5.1.0"
let [<Literal>] AssemblyFileVersion = "5.1.0"
8 changes: 4 additions & 4 deletions src/FsUnit.Xunit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.0.5")>]
[<assembly: AssemblyFileVersionAttribute("5.0.5")>]
[<assembly: AssemblyVersionAttribute("5.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.1.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.0.5"
let [<Literal>] AssemblyFileVersion = "5.0.5"
let [<Literal>] AssemblyVersion = "5.1.0"
let [<Literal>] AssemblyFileVersion = "5.1.0"

0 comments on commit c5b7bd0

Please sign in to comment.