Skip to content

Commit

Permalink
Merge pull request #212 from ElrondNetwork/hotfix-15-1
Browse files Browse the repository at this point in the history
elrond-wasm 0.15.1 hotfix for sync call results
  • Loading branch information
andrei-marinica authored Apr 30, 2021
2 parents e1813bb + 7e35db7 commit d7a81f4
Show file tree
Hide file tree
Showing 143 changed files with 936 additions and 463 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ There are several crates in this repo, this changelog will keep track of all of

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [elrond-wasm 0.15.1] - 2021-04-30
- Mitigating nested sync calls with Send API `execute_on_dest_context_raw_custom_result_range`

## [elrond-wasm 0.15.0, elrond-codec 0.5.2] - 2021-04-19
- ABI
- Constructor representation
Expand Down
8 changes: 4 additions & 4 deletions contracts/benchmarks/send-tx-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/benchmarks/send-tx-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/benchmarks/str-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/benchmarks/str-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/adder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/adder/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/adder/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crowdfunding-egld/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/crowdfunding-egld/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crowdfunding-egld/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crowdfunding-erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ wasm-output-mode = ["elrond-wasm-node"]
path = "../erc20"

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"

4 changes: 2 additions & 2 deletions contracts/examples/crowdfunding-erc20/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crowdfunding-erc20/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crowdfunding-esdt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"

4 changes: 2 additions & 2 deletions contracts/examples/crowdfunding-esdt/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crowdfunding-esdt/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crypto-bubbles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ path = "src/lib.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../elrond-wasm-debug"
4 changes: 2 additions & 2 deletions contracts/examples/crypto-bubbles/abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/crypto-bubbles/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["wasm-output-mode"]
default-features = false

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
4 changes: 2 additions & 2 deletions contracts/examples/crypto-kitties/common/kitty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ publish = false
path = "src/lib.rs"

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../../../elrond-wasm-derive"

[dependencies.random]
Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/crypto-kitties/kitty-auction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ version = "0.0.0"
path = "../kitty-ownership"

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default-features = false
path = ".."

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ version = "0.0.0"
path = "../common/random"

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ default-features = false
path = ".."

[dependencies.elrond-wasm-output]
version = "0.15.0"
version = "0.15.1"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
8 changes: 4 additions & 4 deletions contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ version = "0.0.0"
path = "../kitty-genetic-alg"

[dependencies.elrond-wasm]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.15.0"
version = "0.15.1"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit d7a81f4

Please sign in to comment.