Skip to content

Commit

Permalink
Release v5.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr committed Jul 11, 2023
1 parent e59e43f commit 1740286
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 5.4.0.0 - Jul 10, 2023
- Add support for xunit 2.5.0. - (https://github.com/fsprojects/FsUnit/pull/240)
- Update dependencies.

### 5.3.1.0 - Jun 7, 2023
- Set FSharp.Core back to ~5.0.0 to support older projects. (https://github.com/fsprojects/FsUnit/pull/236)
- Update some dependencies.
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.3.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.3.1.0")>]
[<assembly: AssemblyVersionAttribute("5.4.0.0")>]
[<assembly: AssemblyFileVersionAttribute("5.4.0.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.3.1.0"
let [<Literal>] AssemblyFileVersion = "5.3.1.0"
let [<Literal>] AssemblyVersion = "5.4.0.0"
let [<Literal>] AssemblyFileVersion = "5.4.0.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.3.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.3.1.0")>]
[<assembly: AssemblyVersionAttribute("5.4.0.0")>]
[<assembly: AssemblyFileVersionAttribute("5.4.0.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.3.1.0"
let [<Literal>] AssemblyFileVersion = "5.3.1.0"
let [<Literal>] AssemblyVersion = "5.4.0.0"
let [<Literal>] AssemblyFileVersion = "5.4.0.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.3.1.0")>]
[<assembly: AssemblyFileVersionAttribute("5.3.1.0")>]
[<assembly: AssemblyVersionAttribute("5.4.0.0")>]
[<assembly: AssemblyFileVersionAttribute("5.4.0.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.3.1.0"
let [<Literal>] AssemblyFileVersion = "5.3.1.0"
let [<Literal>] AssemblyVersion = "5.4.0.0"
let [<Literal>] AssemblyFileVersion = "5.4.0.0"

0 comments on commit 1740286

Please sign in to comment.