Skip to content

Commit

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

## [elrond-wasm 0.17.0] - 2021-05-28
- Integration tests can now call Arwen-Mandos (mandos-go)
- Send API refactoring and cleanup
- ESDT builtin function calls no longer require explicit gas
- sync calls and transfer-execute no longer require explicit gas
- `#[payment_nonce]` endpoint argument annotation
- `#[payable]` annotation no longer allowed without argument

## [elrond-wasm 0.16.2, mandos 0.7.2] - 2021-05-20
- New implementation for the `Try` trait for `SCResult`, in accordance to feature `try_trait_v2`
- Published DNS module, which helps contracts register usernames for themselves
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../elrond-wasm"

[dependencies.elrond-wasm-derive]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-derive"

[dependencies.elrond-wasm-node]
version = "0.16.2"
version = "0.17.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
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.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.16.2"
version = "0.17.0"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit df1e3de

Please sign in to comment.