File tree Expand file tree Collapse file tree
bench/cardano-recon-framework Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Revision history for cardano-trace-ltl
22
3+ ## 1.2.1 -- May 2026
4+
5+ * Replace positional ` FILE ` and ` FILES ` arguments in ` cardano-recon ` with named ` --formulas ` and ` --traces ` options.
6+
37## 1.2.0 -- May 2026
48
59* Add ` ContinuousFormula ` — the temporal-operator-free fragment of ` Formula ` , with ` retract ` for
Original file line number Diff line number Diff line change @@ -43,7 +43,9 @@ Available options:
4343 --seek-to-end BOOL seek to the end of the trace file before ingesting it
4444 (default: True)
4545 --timeunit <hour|minute|second|millisecond|microsecond>
46- timeunit (default: second)
46+ unit in which numeric arguments of temporal
47+ operators in input formulas are measured
48+ (default: second)
4749 --on-missing-key <crash|bottom>
4850 behaviour when a formula atom references a missing
4951 event property key (default: bottom)
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ parseTimeunit = option readTimeunit $
7777 <> metavar " <hour|minute|second|millisecond|microsecond>"
7878 <> showDefault
7979 <> value Second
80- <> help " timeunit "
80+ <> help " unit in which numeric arguments of temporal operators in input formulas are measured "
8181
8282parseEventDuration :: Parser Word
8383parseEventDuration = option auto (long " duration" <> metavar " INT" <> help " temporal event duration (μs)" )
@@ -91,7 +91,7 @@ parseDumpMetrics = option readBool $
9191 <> help " enable periodic metric dumps to stdout"
9292
9393parseFormulasFile :: Parser FilePath
94- parseFormulasFile = argument str (metavar " FILE" )
94+ parseFormulasFile = option str (long " formulas " <> metavar " FILE" <> help " YAML file with a list of formulas to check " )
9595
9696parseTraceDispatcherCfgFile :: Parser (Maybe FilePath )
9797parseTraceDispatcherCfgFile =
@@ -102,7 +102,7 @@ parseContext =
102102 option (optional str) (long " context" <> value Nothing <> metavar " FILE" <> help " context variables" )
103103
104104parseTraceFiles :: Parser [FilePath ]
105- parseTraceFiles = some (argument str (metavar " FILES " ))
105+ parseTraceFiles = some (option str (long " traces " <> metavar " FILE " <> help " trace log file (repeatable) " ))
106106
107107parseRetention :: Parser Word
108108parseRetention = option auto $
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: Cardano Re(altime) Con(formance) Framework based on Linear T
44category : Cardano
55 Testing
66copyright : 2026 Intersect.
7- version : 1.2.0
7+ version : 1.2.1
88license : Apache-2.0
99license-files : LICENSE
1010 NOTICE
You can’t perform that action at this time.
0 commit comments