-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix ListBytes:getOrDefault with List:get (#313)
* Use normal list indexing (`List[Idx]`, `LIST.get`) to define `ListBytes:getOrDefault` To avoid recursion and element-wise list matching when we index into a `ListBytes`, the hooked function for normal lists should be used. We are already doing this for the `ListBytes:primitiveLookup` function. For the case of `ListBytes:getOrDefault`, this means to either rewrite to an expression backed by the `LIST.get` function, or to the default value when the index is out of range. * remove isBytes constraint from getBuffer rules (assume there are always bytes) * Set Version: 0.1.102 * Revert "remove isBytes constraint from getBuffer rules (assume there are always bytes)" This reverts commit d886893. * Set Version: 0.1.106 --------- Co-authored-by: devops <[email protected]>
- Loading branch information
Showing
3 changed files
with
8 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kmultiversx" | ||
version = "0.1.105" | ||
version = "0.1.106" | ||
description = "Python tools for Elrond semantics" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.105 | ||
0.1.106 |