Skip to content

Commit

Permalink
elrond-wasm 0.20.0, elrond-codec 0.7.0, mandos 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Oct 2, 2021
1 parent 2f9a42a commit f06544b
Show file tree
Hide file tree
Showing 133 changed files with 287 additions and 279 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.20.0, elrond-codec 0.7.0, mandos 0.10.0] - 2021-10-02
- Managed callback handling
- Managed async call result
- ManagedVec improvements, deserialization fix
- Better conversions between big numeric types
- Improved preprocessor substitutions: hidden generics for most managed types
- Build info in ABI - rustc version, framework version, crate version

## [elrond-wasm 0.19.1] - 2021-09-17
- Legacy Send API implementation fix

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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../modules/elrond-wasm-module-bonding-curve"

[dependencies.elrond-wasm]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm-node"
optional = true

[dev-dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.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.19.1"
version = "0.20.0"
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.19.1"
version = "0.20.0"
path = "../../../elrond-wasm"
features = ["derive"]

[dependencies.elrond-wasm-node]
version = "0.19.1"
version = "0.20.0"
path = "../../../elrond-wasm-node"
optional = true

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

[dependencies.elrond-wasm]
version = "0.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm"

[dependencies.elrond-wasm-debug]
version = "0.19.1"
version = "0.20.0"
path = "../../../../elrond-wasm-debug"
Loading

0 comments on commit f06544b

Please sign in to comment.