Skip to content

Commit

Permalink
Update dependency: deps/kevm_release (#659)
Browse files Browse the repository at this point in the history
* deps/kevm_release: Set Version 1.0.625

* Set Version: 0.1.330

* Sync Poetry files: kevm-pyk version 1.0.625

* deps/k_release: sync release file version 7.1.39

* flake.{nix,lock}: update Nix derivations

* update bug_report_id

* Sync Poetry files: kevm-pyk version 1.0.625

* Set Version: 0.1.331

---------

Co-authored-by: devops <devops@runtimeverification.com>
Co-authored-by: Andrei <16517508+anvacaru@users.noreply.github.com>
Co-authored-by: Palina Tolmach <polina.tolmach@gmail.com>
  • Loading branch information
4 people authored Jul 2, 2024
1 parent 3f7a133 commit 72a70cc
Show file tree
Hide file tree
Showing 9 changed files with 49 additions and 48 deletions.
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.33
7.1.39
2 changes: 1 addition & 1 deletion deps/kevm_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.624
1.0.625
40 changes: 20 additions & 20 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Kontrol";

inputs = {
kevm.url = "github:runtimeverification/evm-semantics/v1.0.624";
kevm.url = "github:runtimeverification/evm-semantics/v1.0.625";
nixpkgs.follows = "kevm/nixpkgs";
nixpkgs-pyk.follows = "kevm/nixpkgs-pyk";
k-framework.follows = "kevm/k-framework";
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.330
0.1.331
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kontrol"
version = "0.1.330"
version = "0.1.331"
description = "Foundry integration for KEVM"
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
]

[tool.poetry.dependencies]
python = "^3.10"
kevm-pyk = { git = "https://github.com/runtimeverification/evm-semantics.git", tag = "v1.0.624", subdirectory = "kevm-pyk" }
kevm-pyk = { git = "https://github.com/runtimeverification/evm-semantics.git", tag = "v1.0.625", subdirectory = "kevm-pyk" }

[tool.poetry.group.dev.dependencies]
autoflake = "*"
Expand Down
2 changes: 1 addition & 1 deletion src/kontrol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if TYPE_CHECKING:
from typing import Final

VERSION: Final = '0.1.330'
VERSION: Final = '0.1.331'
3 changes: 2 additions & 1 deletion src/kontrol/prove.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,12 @@ def create_kcfg_explore() -> KCFGExplore:
('localhost', server.port(), TransportType.SINGLE_SOCKET),
],
}
bug_report_id = None if options.bug_report is None else test.id
client = KoreClient(
'localhost',
server.port(),
bug_report=options.bug_report,
bug_report_id=test.id,
bug_report_id=bug_report_id,
dispatch=dispatch,
)
cterm_symbolic = CTermSymbolic(
Expand Down

0 comments on commit 72a70cc

Please sign in to comment.