Skip to content

Commit

Permalink
Rename --id to --version in the error message (#2083)
Browse files Browse the repository at this point in the history
* Rename `--id` to `--version` in the error message

* Set Version: 1.0.301

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
palinatolmach and devops authored Sep 21, 2023
1 parent 8f4a32a commit 65ba298
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.300"
version = "1.0.301"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.300'
VERSION: Final = '1.0.301'
2 changes: 1 addition & 1 deletion kevm-pyk/src/kontrolx/foundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def get_test_id(self, test: str, id: int | None) -> str:
if id is None:
if len(matching_proofs) > 1:
raise ValueError(
f'Found {len(matching_proofs)} matching proofs for {test}. Use the --id flag to choose one.'
f'Found {len(matching_proofs)} matching proofs for {test}. Use the --version flag to choose one.'
)
test_id = single(matching_proofs).id
return test_id
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.300
1.0.301

0 comments on commit 65ba298

Please sign in to comment.