diff --git a/code/Changelog.md b/code/Changelog.md index e38b5c4f..ece8031e 100644 --- a/code/Changelog.md +++ b/code/Changelog.md @@ -1,3 +1,19 @@ +# V 3.0.3 +## Fix +* Fix `IsEqualTo` failing for NaN (issue #342) +* Fix for null returning methods or function failing with 'Check.ThatCode' (issue #343). This was a regression introduced in V3.0.0. + +# V 3.0.2 +## Fix +* Fix `FormatException` for some failure conditions with `Verifies` (issue #340) +* Fix `IsEqualTo` failing for PositiveInfinity and NegativeInfinity (issue #341) + +# V 3.0.1 +## Fix +* Fix `Check.ThatCode` not awaiting `Task` returning lambdas in V3.0.0. Note that `Task` returning lambdas do work in V3.0.0 +* an InvalidOperation is thrown when using `Check.ThatCode` on an async void method/lambda (as those cannot be awaited) + + # V 3.0.0 ## Major changes * You can execute multiple check as a single batch and get every failures, instead of the first one. This can be achieved using: diff --git a/code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md b/code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md index 0f10fd6c..66c8b9bd 100644 --- a/code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md +++ b/code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md @@ -1,14 +1,20 @@ + +# V 3.0.3 +## Fix +* Fix `IsEqualTo` failing for NaN (issue #342) +* Fix for null returning methods or function failing with 'Check.ThatCode' (issue #343). This was a regression introduced in V3.0.0. + + # V 3.0.2 ## Fix * Fix `FormatException` for some failure conditions with `Verifies` (issue #340) -* Fix `IsEqualTo` failing for PositiveInfinity and NEgative Infinity (issue #341) +* Fix `IsEqualTo` failing for PositiveInfinity and NegativeInfinity (issue #341) # V 3.0.1 ## Fix * Fix `Check.ThatCode` not awaiting `Task` returning lambdas in V3.0.0. Note that `Task` returning lambdas do work in V3.0.0 * an InvalidOperation is thrown when using `Check.ThatCode` on an async void method/lambda (as those cannot be awaited) - # V 3.0.0 ## Major changes * You can execute multiple check as a single batch and get every failures, instead of the first one. This can be achieved using: diff --git a/code/src/NFluent.Multi/NFluent.Multi.csproj b/code/src/NFluent.Multi/NFluent.Multi.csproj index 7a9b8df7..ab133e73 100644 --- a/code/src/NFluent.Multi/NFluent.Multi.csproj +++ b/code/src/NFluent.Multi/NFluent.Multi.csproj @@ -25,7 +25,7 @@ True True latest-recommended - 3.0.3-beta + 3.0.3 fix issue #342 and 343