Skip to content

Commit

Permalink
elrond-wasm 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Aug 20, 2021
1 parent e464f4a commit 750ed81
Show file tree
Hide file tree
Showing 123 changed files with 269 additions and 266 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ 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.18.1] - 2021-08-5
## [elrond-wasm 0.18.2] - 2021-08-20
- Crypto API: `ripemd160` function, custom secp256k1 signature verification (`verify_custom_secp256k1`) and signature generation (`encode_secp256k1_der_signature`).

## [elrond-wasm 0.18.1] - 2021-08-05
- Added "safe" storage mappers, which serialize keys using nested encoding instead of top. The old respective mappers only kept for backwards compatibility, are now deprecated.

## [elrond-wasm 0.18.0, mandos 0.8.0] - 2021-07-28
Expand Down
6 changes: 3 additions & 3 deletions contracts/benchmarks/send-tx-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ path = "src/send_tx_repeat.rs"
wasm-output-mode = ["elrond-wasm-node"]

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

Expand Down
8 changes: 4 additions & 4 deletions contracts/examples/bonding-curve-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ wasm-output-mode = [
]

[dependencies.elrond-wasm-module-bonding-curve]
version = "0.18.1"
version = "0.18.2"
path = "../../modules/elrond-wasm-module-bonding-curve"

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-debug"

4 changes: 2 additions & 2 deletions contracts/examples/bonding-curve-contract/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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-debug"
2 changes: 1 addition & 1 deletion contracts/examples/bonding-curve-contract/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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-output"
features = ["wasm-output-mode"]

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

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../../../elrond-wasm"
features = ["derive"]

Expand Down
6 changes: 3 additions & 3 deletions contracts/examples/crypto-kitties/kitty-auction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ version = "0.0.0"
path = "../kitty-ownership"

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ version = "0.0.0"
path = "../common/random"

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
6 changes: 3 additions & 3 deletions contracts/examples/crypto-kitties/kitty-ownership/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ version = "0.0.0"
path = "../kitty-genetic-alg"

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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.18.1"
version = "0.18.2"
path = "../../../../../elrond-wasm-output"
features = [ "wasm-output-mode",]
6 changes: 3 additions & 3 deletions contracts/examples/egld-esdt-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ path = "src/swap.rs"
wasm-output-mode = [ "elrond-wasm-node",]

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.18.1"
version = "0.18.2"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.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 @@ -10,9 +10,9 @@ publish = false
path = ".."

[dependencies.elrond-wasm]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.18.1"
version = "0.18.2"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit 750ed81

Please sign in to comment.