Skip to content

Commit

Permalink
Update dependency: deps/kwasm_release (#211)
Browse files Browse the repository at this point in the history
* deps/kwasm_release: Set Version 0.1.12

* Set Version: 0.1.11

* deps/wasm-semantics: update submodule v0.1.12

* deps/{k_release,pyk_release}: update versions

* kmultiversx/: sync poetry files 0.1.12

* deps/kwasm_release: Set Version 0.1.13

* deps/wasm-semantics: update submodule v0.1.13

* deps/{k_release,pyk_release}: update versions

* kmultiversx/: sync poetry files 0.1.13

* kasmer.py: adjust name build_claim => cterm_build_claim

* update symbol attributes

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: Everett Hildenbrandt <[email protected]>
Co-authored-by: Burak Bilge Yalcinkaya <[email protected]>
  • Loading branch information
4 people authored Mar 7, 2024
1 parent f22f54d commit e955f15
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.5
6.3.25
2 changes: 1 addition & 1 deletion deps/kwasm_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.11
0.1.13
2 changes: 1 addition & 1 deletion deps/pyk_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.662
v0.1.685
2 changes: 1 addition & 1 deletion deps/wasm-semantics
2 changes: 1 addition & 1 deletion elrond-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Storage maps byte arrays to byte arrays.
### Bytes Stack

```k
syntax BytesStack ::= List{Bytes, ":"} [klabel(bytesStackList), symbol]
syntax BytesStack ::= List{Bytes, ":"} [symbol(bytesStackList)]
// --------------------------------------
syntax BytesOp ::= #pushBytes ( Bytes )
Expand Down
24 changes: 12 additions & 12 deletions kmultiversx/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 kmultiversx/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 = "kmultiversx"
version = "0.1.10"
version = "0.1.11"
description = "Python tools for Elrond semantics"
authors = [
"Runtime Verification, Inc. <[email protected]>",
]

[tool.poetry.dependencies]
python = "^3.10"
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.11", subdirectory = "pykwasm" }
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.13", subdirectory = "pykwasm" }
pycryptodomex = "^3.18.0"
hypothesis = "^6.82.6"

Expand Down
4 changes: 2 additions & 2 deletions kmultiversx/src/kmultiversx/kasmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from hypothesis.errors import HypothesisWarning
from hypothesis.strategies import integers, tuples
from pyk.cli.utils import dir_path
from pyk.cterm import CTerm, build_claim
from pyk.cterm import CTerm, cterm_build_claim
from pyk.kast.inner import KApply, KSequence, KSort, KVariable, Subst
from pyk.kast.manip import split_config_from
from pyk.ktool.krun import KRun
Expand Down Expand Up @@ -343,7 +343,7 @@ def generate_claim(
conf_rhs = Subst(rhs_subst)(sym_conf)
rhs = CTerm(conf_rhs)

claim, _ = build_claim(f'{func}', lhs, rhs)
claim, _ = cterm_build_claim(f'{func}', lhs, rhs)

return claim, lhs, rhs

Expand Down
2 changes: 1 addition & 1 deletion mandos.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Only take the next step once both the Elrond node and Wasm are done executing.
<commands> .K </commands>
<instrs> .K </instrs>
syntax Steps ::= List{Step, ""} [klabel(mandosSteps), symbol]
syntax Steps ::= List{Step, ""} [symbol(mandosSteps)]
// -------------------------------------------------------------
rule [steps-empty]:
<k> .Steps => .K </k>
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.10
0.1.11

0 comments on commit e955f15

Please sign in to comment.