diff --git a/CHANGELOG.md b/CHANGELOG.md index 134add92c..0186b72b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - - Bumped GRPC message sizes to 1G (#1480) +- Bumped GRPC message sizes to 1G (#1480) +- Fix format of ITF trace emitted by `verify` command (#1448) ### Security diff --git a/quint/apalache-tests.md b/quint/apalache-tests.md index edc84cec4..88709f0e2 100644 --- a/quint/apalache-tests.md +++ b/quint/apalache-tests.md @@ -119,7 +119,7 @@ An example execution: ``` quint verify --out-itf violateOnFive.itf.json --invariant inv ./testFixture/apalache/violateOnFive.qnt -jq '.[0]."#meta".format' violateOnFive.itf.json +jq '."#meta".format' violateOnFive.itf.json rm ./violateOnFive.itf.json ``` diff --git a/quint/src/cliCommands.ts b/quint/src/cliCommands.ts index e26622641..3fda4e0a3 100644 --- a/quint/src/cliCommands.ts +++ b/quint/src/cliCommands.ts @@ -805,8 +805,8 @@ export async function verifySpec(prev: CompiledStage): Promise