diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 26f3171a..4bb681b9 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +### 5.0.4 - Sep 6, 2022 +- Fix actual messages in xUnit & MsTest in operators `throw` & `throwWithMessage` when exception will be thrown inside lambda. - https://github.com/fsprojects/FsUnit/pull/216 + ### 5.0.3 - Aug 16, 2022 - Fixed a reference issue with .NET Framework. diff --git a/src/FsUnit.MsTestUnit/AssemblyInfo.fs b/src/FsUnit.MsTestUnit/AssemblyInfo.fs index e1f73dd5..ad273306 100644 --- a/src/FsUnit.MsTestUnit/AssemblyInfo.fs +++ b/src/FsUnit.MsTestUnit/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsUnit.MsTest" let [] AssemblyProduct = "FsUnit" let [] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." - let [] AssemblyVersion = "5.0.3" - let [] AssemblyFileVersion = "5.0.3" + let [] AssemblyVersion = "5.0.4" + let [] AssemblyFileVersion = "5.0.4" diff --git a/src/FsUnit.NUnit/AssemblyInfo.fs b/src/FsUnit.NUnit/AssemblyInfo.fs index 42d7f481..e241190b 100644 --- a/src/FsUnit.NUnit/AssemblyInfo.fs +++ b/src/FsUnit.NUnit/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsUnit.NUnit" let [] AssemblyProduct = "FsUnit" let [] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." - let [] AssemblyVersion = "5.0.3" - let [] AssemblyFileVersion = "5.0.3" + let [] AssemblyVersion = "5.0.4" + let [] AssemblyFileVersion = "5.0.4" diff --git a/src/FsUnit.Xunit/AssemblyInfo.fs b/src/FsUnit.Xunit/AssemblyInfo.fs index 050621d9..057a24b9 100644 --- a/src/FsUnit.Xunit/AssemblyInfo.fs +++ b/src/FsUnit.Xunit/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsUnit.Xunit" let [] AssemblyProduct = "FsUnit" let [] AssemblyDescription = "FsUnit is a set of libraries that makes unit-testing with F# more enjoyable." - let [] AssemblyVersion = "5.0.3" - let [] AssemblyFileVersion = "5.0.3" + let [] AssemblyVersion = "5.0.4" + let [] AssemblyFileVersion = "5.0.4"