Skip to content

Commit

Permalink
Merge pull request #1622 from multiversx/release-50
Browse files Browse the repository at this point in the history
Release: sc 0.50.0, codec 0.19.0, vm 0.8.4, sdk 0.4.1
  • Loading branch information
andrei-marinica committed May 10, 2024
2 parents f3c3f78 + c3818e9 commit fd62fb9
Show file tree
Hide file tree
Showing 369 changed files with 1,899 additions and 1,795 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ 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.50.0, codec 0.19.0, vm 0.8.4, sdk 0.4.1] - 2024-05-10
- Framework now runs on **stable** Rust. All unstable features were removed. The most important changes enabling this:
- `CodecFrom` completely removed, `TypeAbiFrom` was used instead since 0.49.0.
- `ManagedVecItem` payload redesigned.
- Contract panic message mechanism improved.
- Unified syntax:
- `NotPayable` marker type in proxies, which prevents callers to add payment to a non-payable endpoint.

## [sc 0.49.0, codec 0.18.8, sdk 0.4.0] - 2024-05-07
- Unified transaction syntax
- new syntax for sending transactions from contracts
Expand Down
26 changes: 13 additions & 13 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.49.0"
version = "0.50.0"
path = "../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.49.0"
version = "0.50.0"
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]
version = "0.49.0"
version = "0.50.0"
path = "../../../../framework/meta"
default-features = false
38 changes: 23 additions & 15 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.49.0"
version = "0.50.0"
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.49.0"
version = "0.50.0"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.49.0"
version = "0.50.0"
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.49.0"
version = "0.50.0"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.49.0"
version = "0.50.0"
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]
version = "0.49.0"
version = "0.50.0"
path = "../../../../../framework/meta"
default-features = false
Loading

0 comments on commit fd62fb9

Please sign in to comment.