Skip to content

Commit

Permalink
Merge pull request #255 from ElrondNetwork/publish-17-2
Browse files Browse the repository at this point in the history
elrond-wasm 0.17.2
  • Loading branch information
andrei-marinica authored Jun 5, 2021
2 parents dad11fb + 316ebd8 commit af6da82
Show file tree
Hide file tree
Showing 115 changed files with 293 additions and 290 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- `pow`, `log2`, `sqrt`
- cryptography: elliptic curves

## [elrond-wasm 0.17.2] - 2021-06-04
- callbacks can now declared in modules only (manual forwarding from the main contract no longer required)

## [elrond-wasm 0.17.1] - 2021-06-04
- `legacy-nft-transfer` feature for interacting with older versions of Arwen

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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
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.17.1"
version = "0.17.2"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
8 changes: 4 additions & 4 deletions contracts/examples/egld-esdt-swap/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.17.1"
version = "0.17.2"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.17.1"
version = "0.17.2"
path = "../../../elrond-wasm-node"
optional = true

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

[dependencies.elrond-wasm]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.17.1"
version = "0.17.2"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit af6da82

Please sign in to comment.