Skip to content

Commit

Permalink
Improvements for 0.3.2 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyredondo authored Nov 26, 2024
1 parent ed6d965 commit ee1edae
Show file tree
Hide file tree
Showing 3 changed files with 274 additions and 111 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.3.1</Version>
<Version>0.3.2</Version>
<Authors>Tony Redondo, Grégory Léocadie</Authors>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
4 changes: 2 additions & 2 deletions src/TimeItSharp.Common/Configuration/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ public Config()
ProcessFailedDataPoints = false;
ShowStdOutForFirstRun = false;
DebugMode = false;
AcceptableRelativeWidth = 0.007;
AcceptableRelativeWidth = 0.006;
ConfidenceLevel = 0.95;
MaximumDurationInMinutes = 45;
EvaluationInterval = 10;
MinimumErrorReduction = 0.0005;
MinimumErrorReduction = 0.001;
}

public static Config LoadConfiguration(string filePath)
Expand Down
Loading

0 comments on commit ee1edae

Please sign in to comment.