Skip to content

Commit 19cf390

Browse files
version 0.9.8
1 parent d38dd64 commit 19cf390

File tree

44 files changed

+134
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+134
-121
lines changed

contracts/benchmarks/str-repeat/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ path = "src/lib.rs"
1111
wasm-output-mode = ["elrond-wasm-node"]
1212

1313
[dependencies.elrond-wasm]
14-
version = "0.9.7"
14+
version = "0.9.8"
1515
path = "../../../elrond-wasm"
1616

1717
[dependencies.elrond-wasm-derive]
18-
version = "0.9.7"
18+
version = "0.9.8"
1919
path = "../../../elrond-wasm-derive"
2020

2121
[dependencies.elrond-wasm-node]
22-
version = "0.9.7"
22+
version = "0.9.8"
2323
path = "../../../elrond-wasm-node"
2424
optional = true
2525

2626
[dev-dependencies.elrond-wasm-debug]
27-
version = "0.9.7"
27+
version = "0.9.8"
2828
path = "../../../elrond-wasm-debug"

contracts/benchmarks/str-repeat/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ features = ["wasm-output-mode"]
2020
default-features = false
2121

2222
[dependencies.elrond-wasm-output]
23-
version = "0.9.7"
23+
version = "0.9.8"
2424
path = "../../../../elrond-wasm-output"
2525
features = ["wasm-output-mode"]
2626

contracts/examples/adder/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ path = "src/lib.rs"
1111
wasm-output-mode = ["elrond-wasm-node"]
1212

1313
[dependencies.elrond-wasm]
14-
version = "0.9.7"
14+
version = "0.9.8"
1515
path = "../../../elrond-wasm"
1616

1717
[dependencies.elrond-wasm-derive]
18-
version = "0.9.7"
18+
version = "0.9.8"
1919
path = "../../../elrond-wasm-derive"
2020

2121
[dependencies.elrond-wasm-node]
22-
version = "0.9.7"
22+
version = "0.9.8"
2323
path = "../../../elrond-wasm-node"
2424
optional = true
2525

2626
[dev-dependencies.elrond-wasm-debug]
27-
version = "0.9.7"
27+
version = "0.9.8"
2828
path = "../../../elrond-wasm-debug"

contracts/examples/adder/debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2018"
66

77
[dependencies]
88
adder = { path = ".." }
9-
elrond-wasm = { version = "0.9.7", path = "../../../../elrond-wasm" }
10-
elrond-wasm-debug = { version = "0.9.7", path = "../../../../elrond-wasm-debug" }
9+
elrond-wasm = { version = "0.9.8", path = "../../../../elrond-wasm" }
10+
elrond-wasm-debug = { version = "0.9.8", path = "../../../../elrond-wasm-debug" }

contracts/examples/adder/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ features = ["wasm-output-mode"]
2020
default-features = false
2121

2222
[dependencies.elrond-wasm-output]
23-
version = "0.9.7"
23+
version = "0.9.8"
2424
path = "../../../../elrond-wasm-output"
2525
features = ["wasm-output-mode"]
2626

contracts/examples/crowdfunding-egld/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ path = "src/lib.rs"
1111
wasm-output-mode = ["elrond-wasm-node"]
1212

1313
[dependencies.elrond-wasm]
14-
version = "0.9.7"
14+
version = "0.9.8"
1515
path = "../../../elrond-wasm"
1616

1717
[dependencies.elrond-wasm-derive]
18-
version = "0.9.7"
18+
version = "0.9.8"
1919
path = "../../../elrond-wasm-derive"
2020

2121
[dependencies.elrond-wasm-node]
22-
version = "0.9.7"
22+
version = "0.9.8"
2323
path = "../../../elrond-wasm-node"
2424
optional = true
2525

2626
[dev-dependencies.elrond-wasm-debug]
27-
version = "0.9.7"
27+
version = "0.9.8"
2828
path = "../../../elrond-wasm-debug"

contracts/examples/crowdfunding-egld/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ features = ["wasm-output-mode"]
2020
default-features = false
2121

2222
[dependencies.elrond-wasm-output]
23-
version = "0.9.7"
23+
version = "0.9.8"
2424
path = "../../../../elrond-wasm-output"
2525
features = ["wasm-output-mode"]
2626

contracts/examples/crowdfunding-erc20/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ wasm-output-mode = ["elrond-wasm-node"]
1414
path = "../simple-erc20"
1515

1616
[dependencies.elrond-wasm]
17-
version = "0.9.7"
17+
version = "0.9.8"
1818
path = "../../../elrond-wasm"
1919

2020
[dependencies.elrond-wasm-derive]
21-
version = "0.9.7"
21+
version = "0.9.8"
2222
path = "../../../elrond-wasm-derive"
2323

2424
[dependencies.elrond-wasm-node]
25-
version = "0.9.7"
25+
version = "0.9.8"
2626
path = "../../../elrond-wasm-node"
2727
optional = true
2828

2929
[dev-dependencies.elrond-wasm-debug]
30-
version = "0.9.7"
30+
version = "0.9.8"
3131
path = "../../../elrond-wasm-debug"
3232

contracts/examples/crowdfunding-erc20/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ features = ["wasm-output-mode"]
2020
default-features = false
2121

2222
[dependencies.elrond-wasm-output]
23-
version = "0.9.7"
23+
version = "0.9.8"
2424
path = "../../../../elrond-wasm-output"
2525
features = ["wasm-output-mode"]
2626

contracts/examples/crowdfunding-esdt/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ path = "src/lib.rs"
1111
wasm-output-mode = ["elrond-wasm-node"]
1212

1313
[dependencies.elrond-wasm]
14-
version = "0.9.7"
14+
version = "0.9.8"
1515
path = "../../../elrond-wasm"
1616

1717
[dependencies.elrond-wasm-derive]
18-
version = "0.9.7"
18+
version = "0.9.8"
1919
path = "../../../elrond-wasm-derive"
2020

2121
[dependencies.elrond-wasm-node]
22-
version = "0.9.7"
22+
version = "0.9.8"
2323
path = "../../../elrond-wasm-node"
2424
optional = true
2525

2626
[dev-dependencies.elrond-wasm-debug]
27-
version = "0.9.7"
27+
version = "0.9.8"
2828
path = "../../../elrond-wasm-debug"
2929

0 commit comments

Comments
 (0)