diff --git a/CsCheck/CsCheck.csproj b/CsCheck/CsCheck.csproj
index 03e88f5..fdcb5e7 100644
--- a/CsCheck/CsCheck.csproj
+++ b/CsCheck/CsCheck.csproj
@@ -22,16 +22,11 @@ CsCheck also makes parallel, performance and regression testing simple and fast.
http://github.com/AnthonyLloyd/CsCheck
CsCheck.png
quickcheck;random;model-based;metamorphic;parallel;performance;causal-profiling;regression;testing
- 4.0.0
+ 4.1.0
-Added SampleParallel overloads using a sequentially run model for linearization.
-Added running operations sequentially before parallel to SampleParallel.
-Added maxSequentialOperations and maxParallelOperations parameters to SampleParallel.
-
-BREAKING CHANGES:
-- Now targets net8.0, version 3.2.2 was the last to target net6.0.
-- SampleConcurrent renamed to SampleParallel.
-- GenOperation<Actual,Model> takes separate actions for actual and model.
+Added ILogger logging parameter with Tyche logging implementation.
+Added Debug check to Faster.
+Improved PCG performance.
net8.0
preview
diff --git a/Tests/LoggingTests.cs b/Tests/LoggingTests.cs
index c7e07f7..3aecaee 100644
--- a/Tests/LoggingTests.cs
+++ b/Tests/LoggingTests.cs
@@ -37,6 +37,8 @@ public void Bool_Distribution_WithTycheLogs(int generatedIntUponTrue)
{
}
+ logger.Dispose();
+
//Actual logic we want to test.
memoryStream.Position = 0;
string json;