Skip to content

Commit d402637

Browse files
committed
misc: update readme and version for V3.0.3 release
1 parent 928a6db commit d402637

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

code/Changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# V 3.0.3
2+
## Fix
3+
* Fix `IsEqualTo` failing for NaN (issue #342)
4+
* Fix for null returning methods or function failing with 'Check.ThatCode' (issue #343). This was a regression introduced in V3.0.0.
5+
6+
# V 3.0.2
7+
## Fix
8+
* Fix `FormatException` for some failure conditions with `Verifies` (issue #340)
9+
* Fix `IsEqualTo` failing for PositiveInfinity and NegativeInfinity (issue #341)
10+
11+
# V 3.0.1
12+
## Fix
13+
* Fix `Check.ThatCode` not awaiting `Task` returning lambdas in V3.0.0. Note that `Task<T>` returning lambdas do work in V3.0.0
14+
* an InvalidOperation is thrown when using `Check.ThatCode` on an async void method/lambda (as those cannot be awaited)
15+
16+
117
# V 3.0.0
218
## Major changes
319
* You can execute multiple check as a single batch and get every failures, instead of the first one. This can be achieved using:

code/ReleaseNoteContentToBeInsertedWithinNuspecFile.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
2+
# V 3.0.3
3+
## Fix
4+
* Fix `IsEqualTo` failing for NaN (issue #342)
5+
* Fix for null returning methods or function failing with 'Check.ThatCode' (issue #343). This was a regression introduced in V3.0.0.
6+
7+
18
# V 3.0.2
29
## Fix
310
* Fix `FormatException` for some failure conditions with `Verifies` (issue #340)
4-
* Fix `IsEqualTo` failing for PositiveInfinity and NEgative Infinity (issue #341)
11+
* Fix `IsEqualTo` failing for PositiveInfinity and NegativeInfinity (issue #341)
512

613
# V 3.0.1
714
## Fix
815
* Fix `Check.ThatCode` not awaiting `Task` returning lambdas in V3.0.0. Note that `Task<T>` returning lambdas do work in V3.0.0
916
* an InvalidOperation is thrown when using `Check.ThatCode` on an async void method/lambda (as those cannot be awaited)
1017

11-
1218
# V 3.0.0
1319
## Major changes
1420
* You can execute multiple check as a single batch and get every failures, instead of the first one. This can be achieved using:

code/src/NFluent.Multi/NFluent.Multi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<EnableNETAnalyzers>True</EnableNETAnalyzers>
2626
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
2727
<AnalysisLevel>latest-recommended</AnalysisLevel>
28-
<Version>3.0.3-beta</Version>
28+
<Version>3.0.3</Version>
2929
<PackageReleaseNotes>fix issue #342 and 343</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<ItemGroup>

0 commit comments

Comments
 (0)