Skip to content

Commit

Permalink
misc: update readme and version for V3.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dupdob committed Jan 12, 2024
1 parent 928a6db commit d402637
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
16 changes: 16 additions & 0 deletions code/Changelog.md
Original file line number Diff line number Diff line change
@@ -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<T>` 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:
Expand Down
10 changes: 8 additions & 2 deletions code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md
Original file line number Diff line number Diff line change
@@ -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<T>` 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:
Expand Down
2 changes: 1 addition & 1 deletion code/src/NFluent.Multi/NFluent.Multi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<Version>3.0.3-beta</Version>
<Version>3.0.3</Version>
<PackageReleaseNotes>fix issue #342 and 343</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit d402637

Please sign in to comment.