Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge rc/0.54 -> dapp #1810

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ They are:
- `multiversx-chain-scenario-format`, in short `scenario-format`, scenario JSON serializer/deserializer, 1 crate.
- `multiversx-sdk`, in short `sdk`, allows communication with the chain(s), 1 crate.

## [sc 0.53.2] - 2024-10-02
- `StakingModule` fix.

## [sc 0.53.1, sdk 0.6.1] - 2024-10-01
- Interactor:
- Allow signature to be empty in TransactionOnNetwork;
Expand Down
30 changes: 10 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions contracts/benchmarks/large-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = "src/large_storage.rs"

[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/large-storage/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/meta-lib"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/large-storage/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/large-storage/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/benchmark-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/scenario"
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/scenario"
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/meta-lib"
default-features = false

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/map-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/meta-lib"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/map-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/queue-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/meta-lib"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/set-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.53.1"
version = "0.53.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta-lib]
version = "0.53.1"
version = "0.53.2"
path = "../../../../../framework/meta-lib"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/set-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading